< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Knowledge.QnAMaker\src\Generated\Models\EndpointSettingsDTOActiveLearning.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.Models
 12{
 13    using System.Linq;
 14
 15    /// <summary>
 16    /// Active Learning settings of the endpoint.
 17    /// </summary>
 18    public partial class EndpointSettingsDTOActiveLearning : ActiveLearningSettingsDTO
 19    {
 20        /// <summary>
 21        /// Initializes a new instance of the EndpointSettingsDTOActiveLearning
 22        /// class.
 23        /// </summary>
 024        public EndpointSettingsDTOActiveLearning()
 25        {
 26            CustomInit();
 027        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the EndpointSettingsDTOActiveLearning
 31        /// class.
 32        /// </summary>
 33        /// <param name="enable">True/False string providing Active
 34        /// Learning</param>
 35        public EndpointSettingsDTOActiveLearning(string enable = default(string))
 036            : base(enable)
 37        {
 38            CustomInit();
 039        }
 40
 41        /// <summary>
 42        /// An initialization method that performs custom operations like setting defaults
 43        /// </summary>
 44        partial void CustomInit();
 45
 46    }
 47}

Methods/Properties

.ctor()
.ctor(...)