SocketTools .NET Edition

HttpClient.PostData Method

Submits the contents of the specified buffer to a resource on the server.

Overload List

Submits the contents of the specified buffer to a resource on the server.

public bool PostData(byte[],int,byte[],ref int);

Submits the contents of the specified MemoryStream to a resource on the server.

public bool PostData(MemoryStream,MemoryStream);

Submits the contents of the specified buffer to a resource on the server.

public bool PostData(string,byte[],int,byte[],ref int);

Submits the contents of the specified buffer to a resource on the server.

public bool PostData(string,byte[],int,byte[],ref int,HttpPostOptions);

Submits the contents of the specified MemoryStream to a resource on the server.

public bool PostData(string,MemoryStream,MemoryStream);

Submits the contents of the specified MemoryStream to a resource on the server.

public bool PostData(string,MemoryStream,MemoryStream,HttpPostOptions);

Submits the contents of the specified buffer to a resource on the server.

public bool PostData(string,string,ref string);

Submits the contents of the specified buffer to a resource on the server.

public bool PostData(string,string,ref string,HttpPostOptions);

Submits the contents of the specified buffer to a script on the server.

public bool PostData(string,ref string);

See Also

HttpClient Class | SocketTools Namespace