Microsoft.WindowsAzure.MediaServices.Client.StreamingEndPointRequestLogCollection.GetStreamingEndPointMetrics C# (CSharp) Method

GetStreamingEndPointMetrics() public method

Get metrics for a Media Services Streaming EndPoint.
public GetStreamingEndPointMetrics ( string endpointAddress, string storageAccountKey, string mediaServicesAccountId, string streamingEndPointId, System.DateTime start, System.DateTime end ) : ICollection
endpointAddress string The Telemetry endpoint address
storageAccountKey string The Storage account key.
mediaServicesAccountId string The Media Services account Id.
streamingEndPointId string The Streaming EndPoint ID
start System.DateTime The start time.
end System.DateTime The end time.
return ICollection
        public ICollection<IStreamingEndPointRequestLog> GetStreamingEndPointMetrics(
            string endpointAddress,
            string storageAccountKey,
            string mediaServicesAccountId,
            string streamingEndPointId,
            DateTime start,
            DateTime end)
        {
            return AsyncHelper.Wait(GetStreamingEndPointMetricsAsync(
                endpointAddress,
                storageAccountKey,
                mediaServicesAccountId,
                streamingEndPointId,
                start,
                end));
        }