UrlEncodedParameterWriter.Encode Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Encodes all the parameter values for a Web method and writes them to the specified writer.
Overloads
Encode(TextWriter, Object[]) |
Encodes all the parameter values for a Web method and writes them to the specified writer. |
Encode(TextWriter, String, Object) |
Encodes a specified parameter value and writes it to the specified writer. |
Encode(TextWriter, Object[])
Encodes all the parameter values for a Web method and writes them to the specified writer.
protected:
void Encode(System::IO::TextWriter ^ writer, cli::array <System::Object ^> ^ values);
protected void Encode (System.IO.TextWriter writer, object[] values);
member this.Encode : System.IO.TextWriter * obj[] -> unit
Protected Sub Encode (writer As TextWriter, values As Object())
Parameters
- writer
- TextWriter
A TextWriter object that does the writing to the HTTP request.
- values
- Object[]
The Web method parameter values.
Remarks
This overload of the Encode method calls the other overload, Encode, for each of the parameter values, including individual items in arrays.
Applies to
Encode(TextWriter, String, Object)
Encodes a specified parameter value and writes it to the specified writer.
protected:
void Encode(System::IO::TextWriter ^ writer, System::String ^ name, System::Object ^ value);
protected void Encode (System.IO.TextWriter writer, string name, object value);
member this.Encode : System.IO.TextWriter * string * obj -> unit
Protected Sub Encode (writer As TextWriter, name As String, value As Object)
Parameters
- writer
- TextWriter
A TextWriter object that does the writing to the HTTP request.
- name
- String
The name of the parameter that will be encoded.
- value
- Object
The value of the parameter that will be encoded.
Remarks
The other signature of the Encode method, Encode, which is called for each Web method, calls this signature of the Encode method for each of the parameter values, including individual items in arrays.