Coder PostDataEncode Method (String)C# API
Encodes a string so that it can be sent to a web server as POST data.

Namespace: Facilita.Web
Assembly: clrWebBrowser (in clrWebBrowser.dll) Version: 9.5.5.77 (1.0.0.0)
Syntax

public static string PostDataEncode(
	string data
)

Parameters

data
Type: System String
The text to encode.

Return Value

The encoded text.
Remarks

This is done using percent-encoding, in a similar way to UrlEncode(String), with the exception that space characters will be converted to +, not %20
See Also