HttpContentMultipartExtensions.IsMimeMultipartContent Method (, String)

Determines whether the specified content is MIME multipart content with the specified subtype.

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, _
    subtype As String _
) As Boolean
'Usage
Dim content As HttpContent
Dim subtype As String
Dim returnValue As Boolean

returnValue = content.IsMimeMultipartContent(subtype)
public static bool IsMimeMultipartContent(
    this HttpContent content,
    string subtype
)
[ExtensionAttribute]
public:
static bool IsMimeMultipartContent(
    HttpContent^ content, 
    String^ subtype
)
static member IsMimeMultipartContent : 
        content:HttpContent * 
        subtype:string -> bool 
public static function IsMimeMultipartContent(
    content : HttpContent, 
    subtype : String
) : boolean

Parameters

  • content
    Type: HttpContent
    The content.
  • subtype
    Type: System.String
    The MIME multipart subtype to match.

Return Value

Type: System.Boolean
true if the specified content is MIME multipart content with the specified subtype; 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

IsMimeMultipartContent Overload

System.Net.Http Namespace