admin
2020-06-10 a610f2ab6e543d2cb78c1ef212ac6a74ddc067d9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
// Copyright © 2017 The CefSharp Authors. All rights reserved.
//
// Use of this source code is governed by a BSD-style license that can be found in the LICENSE file.
 
namespace CefSharp
{
    /// <summary>
    /// Represents the response to an attempt to register the Widevine Content Decryption Module (CDM)
    /// </summary>
    public sealed class CdmRegistration
    {
        /// <summary>
        /// If CDM registration succeeded then value will be <see cref="CdmRegistrationErrorCode.None"/>, for other values see the enumeration <see cref="CdmRegistrationErrorCode" />.
        /// </summary>
        public CdmRegistrationErrorCode ErrorCode { get; private set; }
 
        /// <summary>
        /// Contains an error message containing additional information if <see cref="ErrorCode"/> is not <see cref="CdmRegistrationErrorCode.None"/>.
        /// </summary>
        public string ErrorMessage { get; private set; }
 
        /// <summary>
        /// CdmRegistration
        /// </summary>
        /// <param name="errorCode">error code</param>
        /// <param name="errorMessage">error message</param>
        public CdmRegistration(CdmRegistrationErrorCode errorCode, string errorMessage)
        {
            ErrorCode = errorCode;
            ErrorMessage = errorMessage;
        }
    }
}