< Summary

Class:Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker.OperationsExtensions
Assembly:Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Knowledge.QnAMaker\src\Generated\OperationsExtensions.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:43
Line coverage:0% (0 of 3)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
GetDetailsAsync()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Knowledge.QnAMaker\src\Generated\OperationsExtensions.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.CognitiveServices.Knowledge.QnAMaker
 12{
 13    using Models;
 14    using System.Threading;
 15    using System.Threading.Tasks;
 16
 17    /// <summary>
 18    /// Extension methods for Operations.
 19    /// </summary>
 20    public static partial class OperationsExtensions
 21    {
 22            /// <summary>
 23            /// Gets details of a specific long running operation.
 24            /// </summary>
 25            /// <param name='operations'>
 26            /// The operations group for this extension method.
 27            /// </param>
 28            /// <param name='operationId'>
 29            /// Operation id.
 30            /// </param>
 31            /// <param name='cancellationToken'>
 32            /// The cancellation token.
 33            /// </param>
 34            public static async Task<Operation> GetDetailsAsync(this IOperations operations, string operationId, Cancell
 35            {
 036                using (var _result = await operations.GetDetailsWithHttpMessagesAsync(operationId, null, cancellationTok
 37                {
 038                    return _result.Body;
 39                }
 040            }
 41
 42    }
 43}

Methods/Properties

GetDetailsAsync()