< Summary

Class:Microsoft.Azure.Graph.RBAC.Models.PreAuthorizedApplicationExtension
Assembly:Microsoft.Azure.Graph.RBAC
File(s):C:\Git\azure-sdk-for-net\sdk\graphrbac\Microsoft.Azure.Graph.RBAC\src\Generated\Models\PreAuthorizedApplicationExtension.cs
Covered lines:0
Uncovered lines:6
Coverable lines:6
Total lines:56
Line coverage:0% (0 of 6)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Conditions()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\graphrbac\Microsoft.Azure.Graph.RBAC\src\Generated\Models\PreAuthorizedApplicationExtension.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.Graph.RBAC.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Collections;
 15    using System.Collections.Generic;
 16    using System.Linq;
 17
 18    /// <summary>
 19    /// Representation of an app PreAuthorizedApplicationExtension required by
 20    /// a pre authorized client app.
 21    /// </summary>
 22    public partial class PreAuthorizedApplicationExtension
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the PreAuthorizedApplicationExtension
 26        /// class.
 27        /// </summary>
 028        public PreAuthorizedApplicationExtension()
 29        {
 30            CustomInit();
 031        }
 32
 33        /// <summary>
 34        /// Initializes a new instance of the PreAuthorizedApplicationExtension
 35        /// class.
 36        /// </summary>
 37        /// <param name="conditions">The extension's conditions.</param>
 038        public PreAuthorizedApplicationExtension(IList<string> conditions = default(IList<string>))
 39        {
 040            Conditions = conditions;
 41            CustomInit();
 042        }
 43
 44        /// <summary>
 45        /// An initialization method that performs custom operations like setting defaults
 46        /// </summary>
 47        partial void CustomInit();
 48
 49        /// <summary>
 50        /// Gets or sets the extension's conditions.
 51        /// </summary>
 52        [JsonProperty(PropertyName = "conditions")]
 053        public IList<string> Conditions { get; set; }
 54
 55    }
 56}

Methods/Properties

.ctor()
.ctor(...)
get_Conditions()