Edit

Share via


UrlEncodedParameterWriter.Encode Method

Definition

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.

C#
protected void Encode(System.IO.TextWriter writer, object[] values);

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

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

Encode(TextWriter, String, Object)

Encodes a specified parameter value and writes it to the specified writer.

C#
protected void Encode(System.IO.TextWriter writer, string name, object value);

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.

Applies to

.NET Framework 4.8.1 and other versions
Product Versions
.NET Framework 1.1, 2.0, 3.0, 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1