次の方法で共有


ComponentRenewal クラス

定義

保護されたメディア コンテンツを再生するために更新が必要なコンポーネントの更新をアプリケーションで開始できるようにします。

public ref class ComponentRenewal abstract sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Media.Protection.ProtectionRenewalContract, 65536)]
class ComponentRenewal final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Media.Protection.ProtectionRenewalContract), 65536)]
public static class ComponentRenewal
Public Class ComponentRenewal
継承
Object Platform::Object IInspectable ComponentRenewal
属性

Windows の要件

デバイス ファミリ
Windows Desktop Extension SDK (10.0.10240.0 で導入)
API contract
Windows.Media.Protection.ProtectionRenewalContract (v1.0 で導入)

この例では、 ComponentLoadFailedEventHandler を示します。 ループは、失敗したコンポーネントを反復処理します。 また、RenewSystemComponentsAsync が呼び出されます。 RevocationAndRenewalInformationComponentLoadFailedEventArgs を介して渡されることに注意してください。

private async void Manager_ComponentLoadFailed(MediaProtectionManager sender, ComponentLoadFailedEventArgs e)
{
    for (var i = 0; i < e.Information.Items.Count; i++)
    {
        Debug.WriteLine('Component Name=' +
                    e.Information.Items[i].Name +
                    "<BR/>");
        Debug.WriteLine('Failure Reason=' +
                    e.Information.Items[i].Reasons.ToString(16) +
                    "<BR/>");
        Debug.WriteLine('Renewal GUID=' +
                    e.Information.Items[i].RenewalId +
                    "<BR/>");
    }



    //  Invoke the revocation               
    var renewalStatus = await ComponentRenewal.RenewSystemComponentsAsync(e.Information);
    Debug.WriteLine("RenewSystemComponentsAsync: " +
                    renewalStatus.ToString() +
                    "<BR/>");

    e.Completion.Complete(false);
}

メソッド

RenewSystemComponentsAsync(RevocationAndRenewalInformation)

ユーザーにメッセージを表示した後、重要なコンテンツ保護コンポーネントの更新を開始します。

適用対象