Class RawApi
Inheritance
System.Object
RawApi
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.ProgressiveTs.Id3.Raw
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class RawApi
Constructors
RawApi(IBitmovinApiClientFactory)
Declaration
public RawApi(IBitmovinApiClientFactory apiClientFactory)
Parameters
Type | Name | Description |
---|---|---|
IBitmovinApiClientFactory | apiClientFactory |
Properties
Builder
Fluent builder for creating an instance of RawApi
Declaration
public static BitmovinApiBuilder<RawApi> Builder { get; }
Property Value
Type | Description |
---|---|
BitmovinApiBuilder<RawApi> |
Customdata
Declaration
public CustomdataApi Customdata { get; }
Property Value
Type | Description |
---|---|
CustomdataApi |
Methods
CreateAsync(String, String, RawId3Tag)
Add Raw ID3 Tag to a Progressive TS muxing
Declaration
public Task<RawId3Tag> CreateAsync(string encodingId, string muxingId, RawId3Tag rawId3Tag)
Parameters
Type | Name | Description |
---|---|---|
System.String | encodingId | ID of the Encoding. (required) |
System.String | muxingId | ID of the Progressive TS muxing (required) |
RawId3Tag | rawId3Tag | The Raw ID3 Tag to be created |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<RawId3Tag> |
DeleteAsync(String, String, String)
Delete Raw ID3 Tag of a Progressive TS muxing
Declaration
public Task<BitmovinResponse> DeleteAsync(string encodingId, string muxingId, string id3TagId)
Parameters
Type | Name | Description |
---|---|---|
System.String | encodingId | ID of the Encoding. (required) |
System.String | muxingId | ID of the Progressive TS muxing (required) |
System.String | id3TagId | ID of the RAW ID3 Tag (required) |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<BitmovinResponse> |
GetAsync(String, String, String)
Raw ID3 Tag Details of a Progressive TS muxing
Declaration
public Task<RawId3Tag> GetAsync(string encodingId, string muxingId, string id3TagId)
Parameters
Type | Name | Description |
---|---|---|
System.String | encodingId | ID of the Encoding. (required) |
System.String | muxingId | ID of the Progressive TS muxing (required) |
System.String | id3TagId | ID of the Raw ID3 Tag (required) |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<RawId3Tag> |
ListAsync(String, String, Func<RawApi.ListQueryParams, RawApi.ListQueryParams>[])
List Raw ID3 Tags of a Progressive TS muxing
Declaration
public Task<PaginationResponse<RawId3Tag>> ListAsync(string encodingId, string muxingId, params Func<RawApi.ListQueryParams, RawApi.ListQueryParams>[] queryParams)
Parameters
Type | Name | Description |
---|---|---|
System.String | encodingId | ID of the Encoding. (required) |
System.String | muxingId | ID of the Progressive TS muxing (required) |
System.Func<RawApi.ListQueryParams, RawApi.ListQueryParams>[] | queryParams | The query parameters for sorting, filtering and paging options (optional) |
Returns
Type | Description |
---|---|
System.Threading.Tasks.Task<PaginationResponse<RawId3Tag>> |