< Summary

Class:Microsoft.Azure.EventGrid.Models.SubscriptionValidationResponse
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\SubscriptionValidationResponse.cs
Covered lines:0
Uncovered lines:6
Coverable lines:6
Total lines:60
Line coverage:0% (0 of 6)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\SubscriptionValidationResponse.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 Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// To complete an event subscription validation handshake, a subscriber
 18    /// can use either the validationCode or the validationUrl received in a
 19    /// SubscriptionValidationEvent. When the validationCode is used, the
 20    /// SubscriptionValidationResponse can be used to build the response.
 21    /// </summary>
 22    public partial class SubscriptionValidationResponse
 23    {
 24        /// <summary>
 25        /// Initializes a new instance of the SubscriptionValidationResponse
 26        /// class.
 27        /// </summary>
 028        public SubscriptionValidationResponse()
 29        {
 30            CustomInit();
 031        }
 32
 33        /// <summary>
 34        /// Initializes a new instance of the SubscriptionValidationResponse
 35        /// class.
 36        /// </summary>
 37        /// <param name="validationResponse">The validation response sent by
 38        /// the subscriber to Azure Event Grid to complete the validation of an
 39        /// event subscription.</param>
 040        public SubscriptionValidationResponse(string validationResponse = default(string))
 41        {
 042            ValidationResponse = validationResponse;
 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        /// <summary>
 52        /// Gets or sets the validation response sent by the subscriber to
 53        /// Azure Event Grid to complete the validation of an event
 54        /// subscription.
 55        /// </summary>
 56        [JsonProperty(PropertyName = "validationResponse")]
 057        public string ValidationResponse { get; set; }
 58
 59    }
 60}