Show / Hide Table of Contents

Class PlayreadyApi

Inheritance
System.Object
PlayreadyApi
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Bitmovin.Api.Sdk.Encoding.Encodings.Muxings.Mp4.Drm.Playready
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class PlayreadyApi

Constructors

PlayreadyApi(IBitmovinApiClientFactory)

Declaration
public PlayreadyApi(IBitmovinApiClientFactory apiClientFactory)
Parameters
Type Name Description
IBitmovinApiClientFactory apiClientFactory

Properties

Builder

Fluent builder for creating an instance of PlayreadyApi

Declaration
public static BitmovinApiBuilder<PlayreadyApi> Builder { get; }
Property Value
Type Description
BitmovinApiBuilder<PlayreadyApi>

Customdata

Declaration
public CustomdataApi Customdata { get; }
Property Value
Type Description
CustomdataApi

Methods

CreateAsync(String, String, PlayReadyDrm)

Add PlayReady DRM to an MP4 muxing

Declaration
public Task<PlayReadyDrm> CreateAsync(string encodingId, string muxingId, PlayReadyDrm playReadyDrm)
Parameters
Type Name Description
System.String encodingId

Id of the encoding. (required)

System.String muxingId

Id of the MP4 muxing. (required)

PlayReadyDrm playReadyDrm

The PlayReady DRM to be created

Returns
Type Description
System.Threading.Tasks.Task<PlayReadyDrm>

DeleteAsync(String, String, String)

Delete PlayReady DRM from an MP4 muxing

Declaration
public Task<BitmovinResponse> DeleteAsync(string encodingId, string muxingId, string drmId)
Parameters
Type Name Description
System.String encodingId

Id of the encoding. (required)

System.String muxingId

Id of the MP4 muxing. (required)

System.String drmId

Id of the PlayReady DRM configuration. (required)

Returns
Type Description
System.Threading.Tasks.Task<BitmovinResponse>

GetAsync(String, String, String)

PlayReady DRM Details of an MP4 muxing

Declaration
public Task<PlayReadyDrm> GetAsync(string encodingId, string muxingId, string drmId)
Parameters
Type Name Description
System.String encodingId

Id of the encoding. (required)

System.String muxingId

Id of the MP4 muxing. (required)

System.String drmId

Id of the PlayReady DRM configuration. (required)

Returns
Type Description
System.Threading.Tasks.Task<PlayReadyDrm>

ListAsync(String, String, Func<PlayreadyApi.ListQueryParams, PlayreadyApi.ListQueryParams>[])

List PlayReady DRMs of an MP4 muxing

Declaration
public Task<PaginationResponse<PlayReadyDrm>> ListAsync(string encodingId, string muxingId, params Func<PlayreadyApi.ListQueryParams, PlayreadyApi.ListQueryParams>[] queryParams)
Parameters
Type Name Description
System.String encodingId

Id of the encoding. (required)

System.String muxingId

Id of the MP4 muxing. (required)

System.Func<PlayreadyApi.ListQueryParams, PlayreadyApi.ListQueryParams>[] queryParams

The query parameters for sorting, filtering and paging options (optional)

Returns
Type Description
System.Threading.Tasks.Task<PaginationResponse<PlayReadyDrm>>
Back to top Generated by DocFX