IContentKey Interface
Represents a content key that can be used for encryption and decryption.
Namespace: Microsoft.WindowsAzure.MediaServices.Client
Assembly: Microsoft.WindowsAzure.MediaServices.Client (in Microsoft.WindowsAzure.MediaServices.Client.dll)
Syntax
'Declaration
Public Interface IContentKey
'Usage
Dim instance As IContentKey
public interface IContentKey
public interface class IContentKey
type IContentKey = interface end
public interface IContentKey
The IContentKey type exposes the following members.
Properties
Name | Description | |
---|---|---|
Checksum | Gets the checksum of the instance of the content key. | |
ContentKeyType | Gets the type of the content key. | |
Created | Gets the date when the content key was created. | |
EncryptedContentKey | Gets the encrypted content key associated with the content key. | |
Id | Gets the content key identifier. | |
LastModified | Gets the date when the content key was last modified. | |
Name | Gets the name of the content key. | |
ProtectionKeyId | Gets the protection key identifier associated with the content key. | |
ProtectionKeyType | Gets the type of the protection key. |
Top
Methods
Name | Description | |
---|---|---|
Delete | Deletes a content key. | |
DeleteAsync | Asynchronously deletes a content key. | |
GetClearKeyValue | Returns a clear key value associated with the content key. | |
GetClearKeyValueAsync | Asynchronously gets the clear key value associated with the content key. | |
GetEncryptedKeyValue | Returns the value of the encrypted key. | |
GetEncryptedKeyValueAsync | Asynchronously gets the encrypted content key value. |
Top