HttpContentMessageExtensions.IsHttpRequestMessageContent Method
Determines whether the specified content is HTTP request message content.
Namespace: System.Net.Http
Assembly: System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function IsHttpRequestMessageContent ( _
content As HttpContent _
) As Boolean
'Usage
Dim content As HttpContent
Dim returnValue As Boolean
returnValue = content.IsHttpRequestMessageContent()
public static bool IsHttpRequestMessageContent(
this HttpContent content
)
[ExtensionAttribute]
public:
static bool IsHttpRequestMessageContent(
HttpContent^ content
)
static member IsHttpRequestMessageContent :
content:HttpContent -> bool
public static function IsHttpRequestMessageContent(
content : HttpContent
) : boolean
Parameters
- content
Type: HttpContent
The content to check.
Return Value
Type: System.Boolean
true if the specified content is HTTP message 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).