AppUriHandlerRegistration 클래스
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
지정된 AppUriHandler 등록에 대한 동적 AppUriHandlerHost 항목을 설정하고 검색합니다.
public ref class AppUriHandlerRegistration sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 458752)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class AppUriHandlerRegistration final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 458752)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class AppUriHandlerRegistration
Public NotInheritable Class AppUriHandlerRegistration
- 상속
- 특성
Windows 요구 사항
디바이스 패밀리 |
Windows 10, version 1809 (10.0.17763.0에서 도입되었습니다.)
|
API contract |
Windows.Foundation.UniversalApiContract (v7.0에서 도입되었습니다.)
|
예제
string uriHandlerName = "Runtime";
Windows.System.AppUriHandlerRegistrationManager manager = AppUriHandlerRegistrationManager.GetDefault(); // Or GetForUser() for multi user-aware apps.
AppUriHandlerRegistration registration = manager.TryGetRegistration(uriHandlerName);
if (registration != null)
{
// App can get or set hosts as needed
}
설명
등록은 AppxManifest의 항목과 동일한 구조를 따릅니다.
<uap3:Extension Category="windows.appUriHandler">
<uap3:AppUriHandler uap7:Name ="Runtime">
<uap3:Host Name="appurihandler.example.com" />
</uap3:AppUriHandler>
</uap3:Extension>
속성
Name |
등록의 이름입니다. |
PackageFamilyName |
연결된 AppUriHandlerRegistrationManager 개체를 만들 때 원래 지정된 앱의 패키지 패밀리 이름을 가져옵니다. |
User |
이 등록의 사용자 컨텍스트입니다. |
메서드
GetAllHosts() |
SetAppAddedHostsAsync를 사용하여 프로그래밍 방식으로 추가된 호스트와 앱 매니페스트에 정적으로 등록된 호스트를 포함한 모든 호스트 집합을 검색합니다. |
GetAppAddedHostsAsync() |
지정된 등록에 대해 SetAppAddedHostsAsync 에서 추가한 호스트 집합을 검색합니다. |
SetAppAddedHostsAsync(IIterable<AppUriHandlerHost>) |
AppxManifest에 이미 정의된 호스트 외에 호스트를 등록합니다. |
UpdateHosts(IIterable<AppUriHandlerHost>) |
컬렉션에 지정된 모든 앱 URI 등록을 업데이트. |