다음을 통해 공유


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)

적용 대상