HttpContentFormDataExtensions Class

 

Extension methods to read HTML form URL-encoded datafrom HttpContent instances.

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

Inheritance Hierarchy

System.Object
  System.Net.Http.HttpContentFormDataExtensions

Syntax

[EditorBrowsableAttribute(EditorBrowsableState.Never)]
public static class HttpContentFormDataExtensions
[ExtensionAttribute]
[EditorBrowsableAttribute(EditorBrowsableState::Never)]
public ref class HttpContentFormDataExtensions abstract sealed 
[<AbstractClass>]
[<Sealed>]
[<EditorBrowsableAttribute(EditorBrowsableState.Never)>]
type HttpContentFormDataExtensions = class end
<ExtensionAttribute>
<EditorBrowsableAttribute(EditorBrowsableState.Never)>
Public NotInheritable Class HttpContentFormDataExtensions

Methods

Name Description
System_CAPS_pubmethodSystem_CAPS_static IsFormData(HttpContent)

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

System_CAPS_pubmethodSystem_CAPS_static ReadAsFormDataAsync(HttpContent)

Asynchronously reads HTML form URL-encoded from an HttpContent instance and stores the results in a NameValueCollection object.

System_CAPS_pubmethodSystem_CAPS_static ReadAsFormDataAsync(HttpContent, CancellationToken)

Asynchronously reads HTML form URL-encoded from an HttpContent instance and stores the results in a NameValueCollection object.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

See Also

System.Net.Http Namespace

Return to top