Show / Hide Table of Contents

Class ConcatenationApi

Inheritance
System.Object
ConcatenationApi
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.InputStreams.Concatenation
Assembly: Bitmovin.Api.Sdk.dll
Syntax
public class ConcatenationApi

Constructors

ConcatenationApi(IBitmovinApiClientFactory)

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

Properties

Builder

Fluent builder for creating an instance of ConcatenationApi

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

Methods

CreateAsync(String, ConcatenationInputStream)

Add Concatenation Input Stream

Declaration
public Task<ConcatenationInputStream> CreateAsync(string encodingId, ConcatenationInputStream concatenationInputStream)
Parameters
Type Name Description
System.String encodingId

Id of the encoding. (required)

ConcatenationInputStream concatenationInputStream

The Concatenation Input Stream to be created

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

DeleteAsync(String, String)

Delete Concatenation Input Stream

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

Id of the encoding. (required)

System.String inputStreamId

Id of the Concatenation input stream. (required)

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

GetAsync(String, String)

Concatenation Input Stream Details

Declaration
public Task<ConcatenationInputStream> GetAsync(string encodingId, string inputStreamId)
Parameters
Type Name Description
System.String encodingId

Id of the encoding. (required)

System.String inputStreamId

Id of the concatenation input stream. (required)

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

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

List Concatenation Input Streams

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

Id of the encoding. (required)

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

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

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