Uploads a data to provided URI and returns a response data of the upload operation.

Namespace:  Rebex.Net
Assembly:  Rebex.Http (in Rebex.Http.dll)

Syntax

Visual Basic
Public Function UploadFile ( _
	uri As Uri, _
	method As String, _
	filePath As String _
) As Byte()
C#
public byte[] UploadFile(
	Uri uri,
	string method,
	string filePath
)

Parameters

uri
Type: System..::..Uri
Uri to send data to.
method
Type: System..::..String
HTTP method to use when sending the data.
filePath
Type: System..::..String
Path to a source file.

Return Value

Response data of the upload operation.

Remarks

HTTP method POST is used when method is set to null (Nothing in VB).

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also