< Summary

Class:Microsoft.Azure.EventGrid.Models.ContainerRegistryChartDeletedEventData
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\ContainerRegistryChartDeletedEventData.cs
Covered lines:2
Uncovered lines:2
Coverable lines:4
Total lines:52
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\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\ContainerRegistryChartDeletedEventData.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.EventGrid.Models
 12{
 13    using System.Linq;
 14
 15    /// <summary>
 16    /// Schema of the Data property of an EventGridEvent for a
 17    /// Microsoft.ContainerRegistry.ChartDeleted event.
 18    /// </summary>
 19    public partial class ContainerRegistryChartDeletedEventData : ContainerRegistryArtifactEventData
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the
 23        /// ContainerRegistryChartDeletedEventData class.
 24        /// </summary>
 125        public ContainerRegistryChartDeletedEventData()
 26        {
 27            CustomInit();
 128        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the
 32        /// ContainerRegistryChartDeletedEventData class.
 33        /// </summary>
 34        /// <param name="id">The event ID.</param>
 35        /// <param name="timestamp">The time at which the event
 36        /// occurred.</param>
 37        /// <param name="action">The action that encompasses the provided
 38        /// event.</param>
 39        /// <param name="target">The target of the event.</param>
 40        public ContainerRegistryChartDeletedEventData(string id = default(string), System.DateTime? timestamp = default(
 041            : base(id, timestamp, action, target)
 42        {
 43            CustomInit();
 044        }
 45
 46        /// <summary>
 47        /// An initialization method that performs custom operations like setting defaults
 48        /// </summary>
 49        partial void CustomInit();
 50
 51    }
 52}

Methods/Properties

.ctor()
.ctor(...)