AppInstance.RecommendedInstance 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
셸은 애플리케이션 활성화가 리디렉션되는 앱의 instance 추천할 수 있습니다.
public:
static property AppInstance ^ RecommendedInstance { AppInstance ^ get(); };
static AppInstance RecommendedInstance();
public static AppInstance RecommendedInstance { get; }
var appInstance = AppInstance.recommendedInstance;
Public Shared ReadOnly Property RecommendedInstance As AppInstance
속성 값
앱은 셸이 앱에 사용하는 것을 선호하거나 null
기본 설정이 없는 경우 instance.
예제
다음은 앱 정의 SelectedKeyIncludesMyKey 메서드를 사용하여 셸이 instance 권장하는지 여부를 확인하는 예제입니다. 이 경우 instance 적합한지 확인하고 적절한 instance 리디렉션합니다. 셸에 기본 설정이 없는 경우 앱은 리디렉션할 기존 앱 instance 찾거나 대상으로 등록하려고 시도할 수 있습니다.
AppInstance RecommendedInstance = AppInstance.RecommendedInstance;
if ((RecommendedInstance != null) && SelectedKeyIncludesMyKey(RecommendedInstance.Key))
{
RecommendedInstance.RedirectActivationTo();
}
else
{
// Look for existing instance or attempt to register itself as target.
}
설명
셸이 기본 설정을 제공하는 경우 앱은 활성화를 해당 instance 리디렉션할 수 있습니다. 앱은 기본 설정을 무시할 수 있습니다.
참고
현재 셸은 RecommendedInstance에 대해 null이 아닌 값을 설정하지 않습니다.