Поделиться через


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 . Обратите внимание, что Объект 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)

Инициирует обновление критически важных компонентов защиты содержимого после запроса пользователю.

Применяется к