共用方式為


ActivatedClientTypeEntry.ApplicationUrl 屬性

定義

取得要在其中啟動型別之應用程式的 URL。

public:
 property System::String ^ ApplicationUrl { System::String ^ get(); };
public string ApplicationUrl { get; }
member this.ApplicationUrl : string
Public ReadOnly Property ApplicationUrl As String

屬性值

要在其中啟動型別之應用程式的 URL。

範例

下列程式碼範例示範如何使用 ApplicationUrl 屬性。

// Print the application URL.
Console::WriteLine( "Application url where the type is activated: {0}", activatedClientTypeEntry->ApplicationUrl->ToString() );
// Print the application URL.
Console.WriteLine(
    "Application url where the type is activated: " +
    myActivatedClientTypeEntry.ApplicationUrl);
' Print the application URL.
Console.WriteLine("Application url where the type is activated: " + _
    myActivatedClientTypeEntry.ApplicationUrl)

適用於