Microsoft.WindowsAzure.MediaServices.Client.ChannelHeartbeat.ChannelHeartbeat C# (CSharp) Method

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
        public ChannelHeartbeat(
            string partitionKey, 
            string rowKey, 
            Guid accountId, 
            Guid channelId, 
            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)
        {
            PartitionKey = partitionKey;
            RowKey = rowKey;
            AccountId = accountId;
            ChannelId = channelId;
            ObservedTime = observedTime;
            CustomAttributes = customAttributes;
            TrackType = trackType;
            TrackName = trackName;
            Bitrate = bitrate;
            IncomingBitrate = incomingBitrate;
            OverlapCount = overlapCount;
            DiscontinuityCount = discontinuityCount;
            LastTimestamp = lastTimestamp;
            NonincreasingCount = nonincreasingCount;
            UnalignedKeyFrames = unalignedKeyFrames;
            UnalignedPresentationTime = unalignedPresentationTime;
            UnexpectedBitrate = unexpectedBitrate;
            Healthy = healthy;
        }