HttpContentMultipartExtensions.IsMimeMultipartContent Method ()
Determines whether the specified content is MIME multipart content.
Namespace: System.Net.Http
Assembly: System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function IsMimeMultipartContent ( _
content As HttpContent _
) As Boolean
'Usage
Dim content As HttpContent
Dim returnValue As Boolean
returnValue = content.IsMimeMultipartContent()
public static bool IsMimeMultipartContent(
this HttpContent content
)
[ExtensionAttribute]
public:
static bool IsMimeMultipartContent(
HttpContent^ content
)
static member IsMimeMultipartContent :
content:HttpContent -> bool
public static function IsMimeMultipartContent(
content : HttpContent
) : boolean
Parameters
- content
Type: HttpContent
The content.
Return Value
Type: System.Boolean
true if the specified content is MIME multipart content; otherwise, false.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type HttpContent. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).
See Also
Reference
HttpContentMultipartExtensions Class