SoapAnyUri.Value Property

Definition

Gets or sets a URI.

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 that contains a URI.

Examples

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

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

Applies to