HttpContentMessageExtensions.IsHttpResponseMessageContent Method
Determines whether the specified content is HTTP response message content.
Namespace: System.Net.Http
Assembly: System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function IsHttpResponseMessageContent ( _
content As HttpContent _
) As Boolean
'Usage
Dim content As HttpContent
Dim returnValue As Boolean
returnValue = content.IsHttpResponseMessageContent()
public static bool IsHttpResponseMessageContent(
this HttpContent content
)
[ExtensionAttribute]
public:
static bool IsHttpResponseMessageContent(
HttpContent^ content
)
static member IsHttpResponseMessageContent :
content:HttpContent -> bool
public static function IsHttpResponseMessageContent(
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).