< Summary

Class:Microsoft.Azure.Search.Models.SqlIntegratedChangeTrackingPolicy
Assembly:Microsoft.Azure.Search.Service
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\SqlIntegratedChangeTrackingPolicy.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:39
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\SqlIntegratedChangeTrackingPolicy.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 Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// Defines a data change detection policy that captures changes using the
 18    /// Integrated Change Tracking feature of Azure SQL Database.
 19    /// </summary>
 20    [Newtonsoft.Json.JsonObject("#Microsoft.Azure.Search.SqlIntegratedChangeTrackingPolicy")]
 21    public partial class SqlIntegratedChangeTrackingPolicy : DataChangeDetectionPolicy
 22    {
 23        /// <summary>
 24        /// Initializes a new instance of the SqlIntegratedChangeTrackingPolicy
 25        /// class.
 26        /// </summary>
 2027        public SqlIntegratedChangeTrackingPolicy()
 28        {
 29            CustomInit();
 2030        }
 31
 32
 33        /// <summary>
 34        /// An initialization method that performs custom operations like setting defaults
 35        /// </summary>
 36        partial void CustomInit();
 37
 38    }
 39}

Methods/Properties

.ctor()