Freigeben über


ActivatedClientTypeEntry.ApplicationUrl-Eigenschaft

Ruft den URL der Anwendung ab, in der der Typ aktiviert werden soll.

Namespace: System.Runtime.Remoting
Assembly: mscorlib (in mscorlib.dll)

Syntax

'Declaration
Public ReadOnly Property ApplicationUrl As String
'Usage
Dim instance As ActivatedClientTypeEntry
Dim value As String

value = instance.ApplicationUrl
public string ApplicationUrl { get; }
public:
property String^ ApplicationUrl {
    String^ get ();
}
/** @property */
public String get_ApplicationUrl ()
public function get ApplicationUrl () : String

Eigenschaftenwert

Der URL der Anwendung, in der der Typ aktiviert werden soll.

Beispiel

Im folgenden Codebeispiel wird die Verwendung der ApplicationUrl-Eigenschaft veranschaulicht.

' 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);
// 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.get_ApplicationUrl());

Plattformen

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.

Versionsinformationen

.NET Framework

Unterstützt in: 2.0, 1.1, 1.0

Siehe auch

Referenz

ActivatedClientTypeEntry-Klasse
ActivatedClientTypeEntry-Member
System.Runtime.Remoting-Namespace