AppInstance.IsCurrentInstance 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
앱의 현재 instance 이 instance 정의한 특정 키에 대해 앱의 등록된 instance 인지 여부입니다.
public:
property bool IsCurrentInstance { bool get(); };
bool IsCurrentInstance();
public bool IsCurrentInstance { get; }
var boolean = appInstance.isCurrentInstance;
Public ReadOnly Property IsCurrentInstance As Boolean
속성 값
Boolean
bool
현재 앱이 앱의 등록된 instance 여부를 나타내는 부울입니다.
예제
다음 예제에서 찾은 instance 현재 instance 경우 해당 instance 활성화됩니다. 현재 instance 아닌 경우 이 예제는 찾은 앱 instance 리디렉션됩니다.
if (theInstance.IsCurrentInstance)
{
global::Windows.UI.Xaml.Application.Start((p) => new App(activatedArgs));
}
else
{
theInstance.RedirectActivationTo();
}