HttpContentFormDataExtensions.IsFormData Method

Determines whether the specified content is HTML form URL-encoded data.

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

Syntax

'Declaration
<ExtensionAttribute> _
Public Shared Function IsFormData ( _
    content As HttpContent _
) As Boolean
'Usage
Dim content As HttpContent 
Dim returnValue As Boolean 

returnValue = content.IsFormData()
public static bool IsFormData(
    this HttpContent content
)
[ExtensionAttribute]
public:
static bool IsFormData(
    HttpContent^ content
)
static member IsFormData : 
        content:HttpContent -> bool
public static function IsFormData(
    content : HttpContent
) : boolean

Parameters

  • content
    Type: HttpContent

    The content.

Return Value

Type: System.Boolean
true if the specified content is HTML form URL-encoded data; 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

HttpContentFormDataExtensions Class

System.Net.Http Namespace