Freigeben über


InteractiveSession.IsRemote Eigenschaft

Definition

Gibt an, ob der aufrufende Prozess in einer Remotedesktopsitzung ausgeführt wird.

public:
 static property bool IsRemote { bool get(); };
static bool IsRemote();
public static bool IsRemote { get; }
var boolean = InteractiveSession.isRemote;
Public Shared ReadOnly Property IsRemote As Boolean

Eigenschaftswert

Boolean

bool

Enthält True , wenn der aktuelle Prozess in einer Remotesitzung ausgeführt wird, oder andernfalls False .

Beispiele

OutputTextBlock1.Text = String.Format("The current session is : {0}", 
    (InteractiveSession.IsRemote ? "Remote" : "Local"));
OutputTextBlock1->Text = "The current session is : " + 
    (Windows::System::RemoteDesktop::InteractiveSession::IsRemote ? "Remote" : "Local");
OutputTextBlock1.Text = String.Format("The current session is : {0}",
    (If(InteractiveSession.IsRemote, "Remote", "Local")))

Gilt für: