SoapQName.Key Propiedad

Definición

Obtiene o establece el alias del espacio de nombres de un nombre completo.

public:
 property System::String ^ Key { System::String ^ get(); void set(System::String ^ value); };
public string Key { get; set; }
member this.Key : string with get, set
Public Property Key As String

Valor de propiedad

String que contiene el alias del espacio de nombres de un nombre completo.

Ejemplos

En el ejemplo de código siguiente se muestra cómo utilizar la propiedad Key. Este ejemplo de código es parte de un ejemplo más grande proporcionado para la clase SoapQName.

// Print the key the SoapQName object.
Console::WriteLine( L"The key of the SoapQName object is {0}.",
   soapQNameInstance->Key );
// Print the key the SoapQName object.
Console.WriteLine("The key of the SoapQName " +
    "object is {0}.", soapQNameInstance.Key);

Se aplica a