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)

适用于