ComponentRenewal クラス
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
保護されたメディア コンテンツを再生するために更新が必要なコンポーネントの更新をアプリケーションで開始できるようにします。
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
- 継承
- 属性
Windows の要件
デバイス ファミリ |
Windows Desktop Extension SDK (10.0.10240.0 で導入)
|
API contract |
Windows.Media.Protection.ProtectionRenewalContract (v1.0 で導入)
|
例
この例では、 ComponentLoadFailedEventHandler を示します。 ループは、失敗したコンポーネントを反復処理します。 また、RenewSystemComponentsAsync が呼び出されます。 RevocationAndRenewalInformation は ComponentLoadFailedEventArgs を介して渡されることに注意してください。
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) |
ユーザーにメッセージを表示した後、重要なコンテンツ保護コンポーネントの更新を開始します。 |