SocketTools .NET Edition

HttpClient.HttpSubmitOptions Enumeration

Specifies the options that the HttpClient class supports when submitting form data to a server.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

[Visual Basic]
<Flags>
Public Enum HttpClient.HttpSubmitOptions
[C#]
[Flags]
public enum HttpClient.HttpSubmitOptions

Remarks

The HttpClient class uses the HttpSubmitOptions enumeration to specify one or more options to be used when submitting form data to a server for processing. Multiple options may be specified if necessary.

Members

Member Name Description Value
submitDefault The default post mode. The contents of the buffer are encoded and sent as standard form data. The data returned by the server is copied to the result buffer exactly as it is returned from the server. 0
submitConvert If the data being returned from the server is textual, it is automatically converted so that the end of line character sequence is compatible with the Windows platform. Individual carriage return or linefeed characters are converted to carriage return/linefeed character sequences. Note that this option does not have any effect on the form data being submitted to the server, only on the data returned by the server. 1

Requirements

Namespace: SocketTools

Assembly: SocketTools.HttpClient (in SocketTools.HttpClient.dll)

See Also

SocketTools Namespace