Condividi tramite


SoapNormalizedString.Value Proprietà

Definizione

Ottiene o imposta una stringa normalizzata.

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

Valore della proprietà

Oggetto String che contiene una stringa normalizzata.

Eccezioni

value contiene caratteri non validi (0xD, 0xA oppure 0x9).

Esempio

Nell'esempio di codice seguente viene illustrato come utilizzare questa proprietà. Questo esempio di codice fa parte di un esempio più ampio fornito per la SoapNormalizedString classe .

// Print the value of the SoapNormalizedString object.
Console::WriteLine( L"The value of the SoapNormalizedString object is \"{0}\".",
   normalized->Value );
// Print the value of the SoapNormalizedString object.
Console.WriteLine(
    "The value of the SoapNormalizedString " +
    "object is \"{0}\".",
    normalized.Value);

Si applica a