IChannel Interface
[This topic is pre-release documentation and is subject to change in future releases. Participation in the preview is limited to invitees only. For more information, see the Release Notes.]
Describes a channel.
Namespace: Microsoft.WindowsAzure.MediaServices.Client
Assembly: Microsoft.WindowsAzure.MediaServices.Client.Live (in Microsoft.WindowsAzure.MediaServices.Client.Live.dll)
Syntax
'Declaration
Public Interface IChannel
'Usage
Dim instance As IChannel
public interface IChannel
public interface class IChannel
type IChannel = interface end
public interface IChannel
The IChannel type exposes the following members.
Properties
Name | Description | |
---|---|---|
Created | Gets the channel creation date. | |
Description | Gets or sets the description of the channel. | |
Id | Gets the unique identifier of the channel. | |
IngestUrl | Gets ingest URL. | |
LastModified | Gets channel last modification date. | |
Name | Gets the name of the channel. | |
PreviewUrl | Gets the URL of the preview. | |
Programs | Collection of programs associated with the channel. | |
Settings | Gets or sets channel settings. | |
Size | Gets or sets the size of the channel. | |
State | Gets the state of the channel. |
Top
Methods
Name | Description | |
---|---|---|
Delete | Deletes the channel. | |
DeleteAsync | Deletes the channel asynchronously. | |
SendDeleteOperation | Sends delete operation to the service and returns. Use Operations collection to get operation's status. | |
SendDeleteOperationAsync | Sends delete operation to the service asynchronously. Use Operations collection to get operation's status. | |
SendStartOperation | Sends start operation to the service and returns. Use Operations collection to get operation's status. | |
SendStartOperationAsync | Sends start operation to the service asynchronously. Use Operations collection to get operation's status. | |
SendStopOperation | Sends stop operation to the service and returns. Use Operations collection to get operation's status. | |
SendStopOperationAsync | Sends stop operation to the service asynchronously. Use Operations collection to get operation's status. | |
SendUpdateOperation | Sends update request to the service and returns. Use Operations collection to get operation's status. | |
SendUpdateOperationAsync | Sends update request to the service asynchronously. Use Operations collection to get operation's status. | |
Start | Starts the channel. | |
StartAsync | Starts the channel asynchronously. | |
Stop | Stops the channel. | |
StopAsync | Stops the channel asynchronously. | |
Update | Updates this channel instance. | |
UpdateAsync | Updates this channel instance asynchronously. |
Top