C# Class Microsoft.WindowsAzure.MediaServices.Client.ChannelHeartbeat

A channel heartbeat metric.
Inheritance: IChannelHeartbeat
Mostra file Open project: Azure/azure-sdk-for-media-services Class Usage Examples

Public Methods

Method Description
ChannelHeartbeat ( string partitionKey, string rowKey, System.Guid accountId, System.Guid channelId, System.DateTime observedTime, string customAttributes, string trackType, string trackName, int bitrate, int incomingBitrate, int overlapCount, int discontinuityCount, ulong lastTimestamp, int nonincreasingCount, bool unalignedKeyFrames, bool unalignedPresentationTime, bool unexpectedBitrate, bool healthy ) : System

Initializes a new instance of the ChannelHeartbeat class.

FromTableEntity ( Microsoft.WindowsAzure.Storage.Table.DynamicTableEntity entity ) : ChannelHeartbeat

Creates a ChannelHeartbeat object from a Azure Table Storage row.

Method Details

ChannelHeartbeat() public method

Initializes a new instance of the ChannelHeartbeat class.
public ChannelHeartbeat ( string partitionKey, string rowKey, System.Guid accountId, System.Guid channelId, System.DateTime observedTime, string customAttributes, string trackType, string trackName, int bitrate, int incomingBitrate, int overlapCount, int discontinuityCount, ulong lastTimestamp, int nonincreasingCount, bool unalignedKeyFrames, bool unalignedPresentationTime, bool unexpectedBitrate, bool healthy ) : System
partitionKey string The partition key.
rowKey string The row key.
accountId System.Guid The Media Services account ID.
channelId System.Guid The Channel ID.
observedTime System.DateTime The observed time of the metric.
customAttributes string The custom attributes.
trackType string The track type.
trackName string The track name.
bitrate int The bitrate.
incomingBitrate int The incoming bitrate.
overlapCount int The overlap count.
discontinuityCount int The discontinuity count.
lastTimestamp ulong The last time stamp.
nonincreasingCount int
unalignedKeyFrames bool
unalignedPresentationTime bool
unexpectedBitrate bool
healthy bool
return System

FromTableEntity() public static method

Creates a ChannelHeartbeat object from a Azure Table Storage row.
public static FromTableEntity ( Microsoft.WindowsAzure.Storage.Table.DynamicTableEntity entity ) : ChannelHeartbeat
entity Microsoft.WindowsAzure.Storage.Table.DynamicTableEntity The Azure Table Storage row.
return ChannelHeartbeat