ActivatedClientTypeEntry.ApplicationUrl 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得要在其中啟動型別之應用程式的 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)