< Summary

Class:Azure.Messaging.EventGrid.SystemEvents.SubscriptionValidationResponse
Assembly:Azure.Messaging.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Azure.Messaging.EventGrid\src\Generated\Models\SubscriptionValidationResponse.cs
C:\Git\azure-sdk-for-net\sdk\eventgrid\Azure.Messaging.EventGrid\src\Generated\Models\SubscriptionValidationResponse.Serialization.cs
Covered lines:0
Uncovered lines:11
Coverable lines:11
Total lines:57
Line coverage:0% (0 of 11)
Covered branches:0
Total branches:4
Branch coverage:0% (0 of 4)

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Azure.Messaging.EventGrid\src\Generated\Models\SubscriptionValidationResponse.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8namespace Azure.Messaging.EventGrid.SystemEvents
 9{
 10    /// <summary> To complete an event subscription validation handshake, a subscriber can use either the validationCode
 11    public partial class SubscriptionValidationResponse
 12    {
 13        /// <summary> Initializes a new instance of SubscriptionValidationResponse. </summary>
 014        internal SubscriptionValidationResponse()
 15        {
 016        }
 17
 18        /// <summary> Initializes a new instance of SubscriptionValidationResponse. </summary>
 19        /// <param name="validationResponse"> The validation response sent by the subscriber to Azure Event Grid to comp
 020        internal SubscriptionValidationResponse(string validationResponse)
 21        {
 022            ValidationResponse = validationResponse;
 023        }
 24
 25        /// <summary> The validation response sent by the subscriber to Azure Event Grid to complete the validation of a
 026        public string ValidationResponse { get; }
 27    }
 28}

C:\Git\azure-sdk-for-net\sdk\eventgrid\Azure.Messaging.EventGrid\src\Generated\Models\SubscriptionValidationResponse.Serialization.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4// <auto-generated/>
 5
 6#nullable disable
 7
 8using System.Text.Json;
 9using Azure.Core;
 10
 11namespace Azure.Messaging.EventGrid.SystemEvents
 12{
 13    public partial class SubscriptionValidationResponse
 14    {
 15        internal static SubscriptionValidationResponse DeserializeSubscriptionValidationResponse(JsonElement element)
 16        {
 017            Optional<string> validationResponse = default;
 018            foreach (var property in element.EnumerateObject())
 19            {
 020                if (property.NameEquals("validationResponse"))
 21                {
 022                    validationResponse = property.Value.GetString();
 23                    continue;
 24                }
 25            }
 026            return new SubscriptionValidationResponse(validationResponse.Value);
 27        }
 28    }
 29}