SoapNormalizedString.Value Property

Definition

Gets or sets a normalized string.

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

Property Value

A String object that contains a normalized string.

Exceptions

value contains invalid characters (0xD, 0xA, or 0x9).

Examples

The following code example shows how to use this property. This code example is part of a larger example that is provided for the SoapNormalizedString class.

// 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);

Applies to