< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Personalizer\src\Generated\Models\LogsPropertiesDateRange.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.Personalizer.Models
 12{
 13    using System.Linq;
 14
 15    public partial class LogsPropertiesDateRange : DateRange
 16    {
 17        /// <summary>
 18        /// Initializes a new instance of the LogsPropertiesDateRange class.
 19        /// </summary>
 220        public LogsPropertiesDateRange()
 21        {
 22            CustomInit();
 223        }
 24
 25        /// <summary>
 26        /// Initializes a new instance of the LogsPropertiesDateRange class.
 27        /// </summary>
 28        public LogsPropertiesDateRange(System.DateTime? fromProperty = default(System.DateTime?), System.DateTime? to = 
 029            : base(fromProperty, to)
 30        {
 31            CustomInit();
 032        }
 33
 34        /// <summary>
 35        /// An initialization method that performs custom operations like setting defaults
 36        /// </summary>
 37        partial void CustomInit();
 38
 39    }
 40}

Methods/Properties

.ctor()
.ctor(...)