private static async Task <Response <DetectLanguageResultCollection> > CreateDetectLanguageResponseAsync(Response response, IDictionary <string, int> idToIndexMap, CancellationToken cancellation)
        {
            DetectLanguageResultCollection result = await TextAnalyticsServiceSerializer.DeserializeDetectLanguageResponseAsync(response.ContentStream, idToIndexMap, cancellation).ConfigureAwait(false);

            return(Response.FromValue(result, response));
        }
 public DetectLanguageResultCollectionDebugView(DetectLanguageResultCollection collection)
 {
     BaseCollection = collection;
 }