次の方法で共有


RevocationAndRenewalItem クラス

定義

信頼されたコンポーネントで取り消され、更新されるコンポーネントを表します。

public ref class RevocationAndRenewalItem sealed
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
/// [Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
class RevocationAndRenewalItem final
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
[Windows.Foundation.Metadata.MarshalingBehavior(Windows.Foundation.Metadata.MarshalingType.Agile)]
public sealed class RevocationAndRenewalItem
Public NotInheritable Class RevocationAndRenewalItem
継承
Object Platform::Object IInspectable RevocationAndRenewalItem
属性

Windows の要件

デバイス ファミリ
Windows 10 (10.0.10240.0 で導入)
API contract
Windows.Foundation.UniversalApiContract (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);
}

注釈

このオブジェクトのインスタンスは、 RevocationAndRenewalInformation.Items プロパティによって返されます。 この情報は、システム処理のために ComponentRenewal.RenewSystemComponentsAsync に渡すことができます。

プロパティ

HeaderHash

取り消されるコンポーネントのヘッダー ハッシュを返します。

Name

取り消されるコンポーネントの名前を返します。

PublicKeyHash

コンポーネントの公開キー ハッシュを返します。

Reasons

コンポーネントの失効の理由を返します。

RenewalId

更新オブジェクトの GUID を返します。

適用対象