C# 클래스 Microsoft.WindowsAzure.MediaServices.Client.ContentKeyCollection

Represents a collection of IContentKey.
상속: ContentKeyBaseCollection
파일 보기 프로젝트 열기: Azure/azure-sdk-for-media-services 1 사용 예제들

공개 메소드들

메소드 설명
Create ( System.Guid keyId, byte contentKey, string name ) : IContentKey

Creates a content key with the specified key identifier and value.

Create ( System.Guid keyId, byte contentKey, string name, ContentKeyType contentKeyType ) : IContentKey

Creates a content key with the specified key identifier and value.

CreateAsync ( System.Guid keyId, byte contentKey, string name ) : Task

Asynchronously creates a content key with the specified key identifier and value.

CreateAsync ( System.Guid keyId, byte contentKey, string name, ContentKeyType contentKeyType ) : Task

Asynchronously creates a content key with the specifies key identifier and value.

비공개 메소드들

메소드 설명
ContentKeyCollection ( MediaContextBase cloudMediaContext ) : System

Initializes a new instance of the ContentKeyCollection class.

메소드 상세

Create() 공개 메소드

Creates a content key with the specified key identifier and value.
public Create ( System.Guid keyId, byte contentKey, string name ) : IContentKey
keyId System.Guid The key identifier.
contentKey byte The value of the content key.
name string A friendly name for the content key.
리턴 IContentKey

Create() 공개 메소드

Creates a content key with the specified key identifier and value.
public Create ( System.Guid keyId, byte contentKey, string name, ContentKeyType contentKeyType ) : IContentKey
keyId System.Guid The key identifier.
contentKey byte The value of the content key.
name string A friendly name for the content key.
contentKeyType ContentKeyType Type of content key to create.
리턴 IContentKey

CreateAsync() 공개 메소드

Asynchronously creates a content key with the specified key identifier and value.
public CreateAsync ( System.Guid keyId, byte contentKey, string name ) : Task
keyId System.Guid The key identifier.
contentKey byte The value of the content key.
name string A friendly name for the content key.
리턴 Task

CreateAsync() 공개 메소드

Asynchronously creates a content key with the specifies key identifier and value.
public CreateAsync ( System.Guid keyId, byte contentKey, string name, ContentKeyType contentKeyType ) : Task
keyId System.Guid The key identifier.
contentKey byte The value of the content key.
name string A friendly name for the content key.
contentKeyType ContentKeyType Type of content key to create.
리턴 Task