Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

HttpContentMultipartExtensions::IsMimeMultipartContent Method

 

Namespace:   System.Net.Http
Assembly:  System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)

NameDescription
System_CAPS_pubmethodSystem_CAPS_staticIsMimeMultipartContent(HttpContent^)

Determines whether the specified content is MIME multipart content.

System_CAPS_pubmethodSystem_CAPS_staticIsMimeMultipartContent(HttpContent^, String^)

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

Return to top

HttpContentMultipartExtensions::IsMimeMultipartContent Method (HttpContent^)

Determines whether the specified content is MIME multipart content.

public:
[ExtensionAttribute]
static bool IsMimeMultipartContent(
	HttpContent^ content
)

Parameters

content
Type: System.Net.Http::HttpContent^

The content.

Return Value

Type: System::Boolean

true if the specified content is MIME multipart content; otherwise, false.

Return to top

HttpContentMultipartExtensions::IsMimeMultipartContent Method (HttpContent^, String^)

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

public:
[ExtensionAttribute]
static bool IsMimeMultipartContent(
	HttpContent^ content,
	String^ subtype
)

Parameters

content
Type: System.Net.Http::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.

Return to top
Show: