Encodes JPIP parameters and creates a valid System.Net.HttpWebRequest.
public HttpWebRequest Encode(
RequestFields fields,
string path,
byte[] postedData
)
Public Function Encode( _
ByVal fields As Leadtools.Jpip.RequestFields, _
ByVal path As String, _
ByVal postedData() As Byte _
) As HttpWebRequest
public:
HttpWebRequest^ Encode(
Leadtools.Jpip.RequestFields^ fields,
String^ path,
array<byte>^ postedData
)
fields
The Leadtools.Jpip.RequestFields to be transmitted to the JPIP server.
path
A System.String value identifying the server URI.
postedData
An array of bytes to be sent in the request message body. This value can be null.
An System.Net.HttpWebRequest ready to transmit the JPIP request to the server.
If postedData is specified, the System.Net.HttpWebRequest will be created with a POST method and all fields will be encoded to the message body.
You can use the postedData parameter to optimize the process of encoding when sending cache information.
If postedData is null the System.Net.HttpWebRequest will be created with a Get method with the fields encoded in the request URL.
For an example, refer to HttpRequestEncoder.
Raster .NET | C API | C++ Class Library | JavaScript HTML5
Document .NET | C API | C++ Class Library | JavaScript HTML5
Medical .NET | C API | C++ Class Library | JavaScript HTML5
Medical Web Viewer .NET