< Summary

Class:Microsoft.Azure.Search.Models.DataChangeDetectionPolicy
Assembly:Microsoft.Azure.Search.Service
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\DataChangeDetectionPolicy.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:35
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\DataChangeDetectionPolicy.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.Search.Models
 12{
 13    using System.Linq;
 14
 15    /// <summary>
 16    /// Abstract base class for data change detection policies.
 17    /// </summary>
 18    public partial class DataChangeDetectionPolicy
 19    {
 20        /// <summary>
 21        /// Initializes a new instance of the DataChangeDetectionPolicy class.
 22        /// </summary>
 6023        public DataChangeDetectionPolicy()
 24        {
 25            CustomInit();
 6026        }
 27
 28
 29        /// <summary>
 30        /// An initialization method that performs custom operations like setting defaults
 31        /// </summary>
 32        partial void CustomInit();
 33
 34    }
 35}

Methods/Properties

.ctor()