AppUriHandlerRegistration クラス

定義

特定の 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
継承
Object Platform::Object IInspectable 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 登録を更新します。

適用対象

こちらもご覧ください