< Summary

Class:Microsoft.Azure.Attestation.MetadataConfigurationOperationsExtensions
Assembly:Microsoft.Azure.Attestation
File(s):C:\Git\azure-sdk-for-net\sdk\attestation\Microsoft.Azure.Attestation\src\Generated\MetadataConfigurationOperationsExtensions.cs
Covered lines:4
Uncovered lines:0
Coverable lines:4
Total lines:67
Line coverage:100% (4 of 4)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
Get(...)-100%100%
GetAsync()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\attestation\Microsoft.Azure.Attestation\src\Generated\MetadataConfigurationOperationsExtensions.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.Attestation
 12{
 13    using Microsoft.Rest;
 14    using Microsoft.Rest.Azure;
 15    using Models;
 16    using System.Threading;
 17    using System.Threading.Tasks;
 18
 19    /// <summary>
 20    /// Extension methods for MetadataConfigurationOperations.
 21    /// </summary>
 22    public static partial class MetadataConfigurationOperationsExtensions
 23    {
 24            /// <summary>
 25            /// Retrieves the OpenID Configuration data for the Azure Attestation Service
 26            /// </summary>
 27            /// <remarks>
 28            /// Retrieves metadata about the attestation signing keys in use by the
 29            /// attestation service
 30            /// </remarks>
 31            /// <param name='operations'>
 32            /// The operations group for this extension method.
 33            /// </param>
 34            /// <param name='tenantBaseUrl'>
 35            /// The tenant name, for example https://mytenant.attest.azure.net.
 36            /// </param>
 37            public static object Get(this IMetadataConfigurationOperations operations, string tenantBaseUrl)
 38            {
 239                return operations.GetAsync(tenantBaseUrl).GetAwaiter().GetResult();
 40            }
 41
 42            /// <summary>
 43            /// Retrieves the OpenID Configuration data for the Azure Attestation Service
 44            /// </summary>
 45            /// <remarks>
 46            /// Retrieves metadata about the attestation signing keys in use by the
 47            /// attestation service
 48            /// </remarks>
 49            /// <param name='operations'>
 50            /// The operations group for this extension method.
 51            /// </param>
 52            /// <param name='tenantBaseUrl'>
 53            /// The tenant name, for example https://mytenant.attest.azure.net.
 54            /// </param>
 55            /// <param name='cancellationToken'>
 56            /// The cancellation token.
 57            /// </param>
 58            public static async Task<object> GetAsync(this IMetadataConfigurationOperations operations, string tenantBas
 59            {
 260                using (var _result = await operations.GetWithHttpMessagesAsync(tenantBaseUrl, null, cancellationToken).C
 61                {
 262                    return _result.Body;
 63                }
 264            }
 65
 66    }
 67}

Methods/Properties

Get(...)
GetAsync()