QueryStringConverter.ConvertValueToString(Object, Type) Método

Definição

Converte um parâmetro em uma representação de cadeia de caracteres de consulta.

public:
 virtual System::String ^ ConvertValueToString(System::Object ^ parameter, Type ^ parameterType);
public virtual string ConvertValueToString (object parameter, Type parameterType);
abstract member ConvertValueToString : obj * Type -> string
override this.ConvertValueToString : obj * Type -> string
Public Overridable Function ConvertValueToString (parameter As Object, parameterType As Type) As String

Parâmetros

parameter
Object

O parâmetro a converter.

parameterType
Type

O Type do parâmetro a converter.

Retornos

String

O nome e valor do parâmetro.

Exemplos

O código a seguir mostra como converter um valor tipado em uma representação de cadeia de caracteres do valor.

int value = 321;
string strValue = converter.ConvertValueToString(value, typeof(Int32));
Console.WriteLine("the value = {0}, the string representation of the value = {1}", value, strValue);
Dim value As Integer = 321
Dim strValue As String = converter.ConvertValueToString(value, GetType(Int32))
Console.WriteLine("the value = {0}, the string representation of the value = {1}", value, strValue)

Aplica-se a