- fields
- The RequestFields to be transmitted to the JPIP server.
- path
- A String value identifying the server URI.
- postedData
- An array of bytes to be sent in the request message body. This value can be null.
Visual Basic (Declaration) | |
---|---|
Public Function Encode( _ ByVal fields As RequestFields, _ ByVal path As String, _ ByVal postedData() As Byte _ ) As HttpWebRequest |
Visual Basic (Usage) | Copy Code |
---|---|
|
C# | |
---|---|
public HttpWebRequest Encode( RequestFields fields, string path, byte[] postedData ) |
C++/CLI | |
---|---|
public: HttpWebRequest Encode( RequestFields^ fields, String^ path, array<byte>^ postedData ) |
Parameters
- fields
- The RequestFields to be transmitted to the JPIP server.
- path
- A String value identifying the server URI.
- postedData
- An array of bytes to be sent in the request message body. This value can be null.
Return Value
An HttpWebRequest ready to transmit the JPIP request to the server.For an example, refer to HttpRequestEncoder.
If postedData is specified, the 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 HttpWebRequest will be created with a Get method with the fields encoded in the request URL.
Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family