Parses the HttpServletRequest's InputStream for the parameters of a multipart/form-data encoded request.

Namespace: yWorks.yFiles.Graph.Web
Assembly: yFilesServer (in yFilesServer.dll) Version: 1.8.0.0 (1.8)

Syntax

C#
protected Dictionary<string, string> parseMultipart(
	HttpContext context
)
Visual Basic
Protected Function parseMultipart ( _
	context As HttpContext _
) As Dictionary(Of String, String)

Parameters

context
Type: System.Web..::..HttpContext

Return Value

A HashMap with the parameter names as key and the content as value.

See Also