共用方式為


UrlAttribute.UrlValue 屬性

定義

取得 UrlAttribute 的 URL 值。

public:
 property System::String ^ UrlValue { System::String ^ get(); };
public string UrlValue { get; }
public string UrlValue { [System.Security.SecurityCritical] get; }
member this.UrlValue : string
[<get: System.Security.SecurityCritical>]
member this.UrlValue : string
Public ReadOnly Property UrlValue As String

屬性值

UrlAttribute 的 URL 值。

屬性

例外狀況

立即呼叫端沒有基礎結構使用權限。

範例

下列程式代碼範例說明 如何使用 UrlValueUrlAttribute屬性。

// Create UrlAttribute.
UrlAttribute^ attribute = gcnew UrlAttribute( "tcp://localhost:1234/RemoteApp" );
Console::WriteLine( "UrlAttribute value: {0}", attribute->UrlValue );
// Create a url attribute object.
UrlAttribute attribute =
    new UrlAttribute("tcp://localhost:1234/RemoteApp");
Console.WriteLine("UrlAttribute value: {0}", attribute.UrlValue);

適用於