Class MxfApi
Inheritance
System.Object
MxfApi
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.Mxf
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class MxfApi
Constructors
MxfApi(IBitmovinApiClientFactory)
Declaration
public MxfApi(IBitmovinApiClientFactory apiClientFactory)
Parameters
Type | Name | Description |
---|---|---|
IBitmovinApiClientFactory | apiClientFactory |
Properties
Builder
Fluent builder for creating an instance of MxfApi
Declaration
public static BitmovinApiBuilder<MxfApi> Builder { get; }
Property Value
Type | Description |
---|---|
BitmovinApiBuilder<MxfApi> |
Customdata
Declaration
public CustomdataApi Customdata { get; }
Property Value
Type | Description |
---|---|
CustomdataApi |
Methods
CreateAsync(String, MxfMuxing)
Add MXF muxing
Declaration
public Task<MxfMuxing> CreateAsync(string encodingId, MxfMuxing mxfMuxing)
Parameters
Type | Name | Description |
---|---|---|
System.String | encodingId | Id of the encoding. (required) |
MxfMuxing | mxfMuxing | The MXF muxing to be created |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<MxfMuxing> |
DeleteAsync(String, String)
Delete MXF muxing
Declaration
public Task<BitmovinResponse> DeleteAsync(string encodingId, string muxingId)
Parameters
Type | Name | Description |
---|---|---|
System.String | encodingId | Id of the encoding. (required) |
System.String | muxingId | Id of the MXF muxing (required) |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<BitmovinResponse> |
GetAsync(String, String)
MXF muxing details
Declaration
public Task<MxfMuxing> GetAsync(string encodingId, string muxingId)
Parameters
Type | Name | Description |
---|---|---|
System.String | encodingId | Id of the encoding. (required) |
System.String | muxingId | Id of the MXF muxing (required) |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<MxfMuxing> |
ListAsync(String, Func<MxfApi.ListQueryParams, MxfApi.ListQueryParams>[])
List MXF muxings
Declaration
public Task<PaginationResponse<MxfMuxing>> ListAsync(string encodingId, params Func<MxfApi.ListQueryParams, MxfApi.ListQueryParams>[] queryParams)
Parameters
Type | Name | Description |
---|---|---|
System.String | encodingId | Id of the encoding. (required) |
System.Func<MxfApi.ListQueryParams, MxfApi.ListQueryParams>[] | queryParams | The query parameters for sorting, filtering and paging options (optional) |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<PaginationResponse<MxfMuxing>> |