< Summary

Class:Microsoft.Azure.KeyVault.Models.ActionTypeEnumExtension
Assembly:Microsoft.Azure.KeyVault
File(s):C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\ActionType.cs
Covered lines:0
Uncovered lines:7
Coverable lines:7
Total lines:60
Line coverage:0% (0 of 7)
Covered branches:0
Total branches:10
Branch coverage:0% (0 of 10)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
ToSerializedValue(...)-0%0%
ToSerializedValue(...)-0%0%
ParseActionType(...)-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\keyvault\Microsoft.Azure.KeyVault\src\Generated\Models\ActionType.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.KeyVault.Models
 12{
 13    using Newtonsoft.Json;
 14    using Newtonsoft.Json.Converters;
 15    using System.Runtime;
 16    using System.Runtime.Serialization;
 17
 18    /// <summary>
 19    /// Defines values for ActionType.
 20    /// </summary>
 21    [JsonConverter(typeof(StringEnumConverter))]
 22    public enum ActionType
 23    {
 24        [EnumMember(Value = "EmailContacts")]
 25        EmailContacts,
 26        [EnumMember(Value = "AutoRenew")]
 27        AutoRenew
 28    }
 29    internal static class ActionTypeEnumExtension
 30    {
 31        internal static string ToSerializedValue(this ActionType? value)
 32        {
 033            return value == null ? null : ((ActionType)value).ToSerializedValue();
 34        }
 35
 36        internal static string ToSerializedValue(this ActionType value)
 37        {
 38            switch( value )
 39            {
 40                case ActionType.EmailContacts:
 041                    return "EmailContacts";
 42                case ActionType.AutoRenew:
 043                    return "AutoRenew";
 44            }
 045            return null;
 46        }
 47
 48        internal static ActionType? ParseActionType(this string value)
 49        {
 50            switch( value )
 51            {
 52                case "EmailContacts":
 053                    return ActionType.EmailContacts;
 54                case "AutoRenew":
 055                    return ActionType.AutoRenew;
 56            }
 057            return null;
 58        }
 59    }
 60}