< Summary

Class:Microsoft.Azure.CognitiveServices.Search.VideoSearch.Models.FreshnessEnumExtension
Assembly:Microsoft.Azure.CognitiveServices.Search.BingVideoSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVideoSearch\src\Generated\VideoSearch\Models\Freshness.cs
Covered lines:0
Uncovered lines:9
Coverable lines:9
Total lines:62
Line coverage:0% (0 of 9)
Covered branches:0
Total branches:12
Branch coverage:0% (0 of 12)

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVideoSearch\src\Generated\VideoSearch\Models\Freshness.cs

#LineLine coverage
 1// <auto-generated>
 2// Code generated by Microsoft (R) AutoRest Code Generator.
 3// Changes may cause incorrect behavior and will be lost if the code is
 4// regenerated.
 5// </auto-generated>
 6
 7namespace Microsoft.Azure.CognitiveServices.Search.VideoSearch.Models
 8{
 9    using Newtonsoft.Json;
 10    using Newtonsoft.Json.Converters;
 11    using System.Runtime;
 12    using System.Runtime.Serialization;
 13
 14    /// <summary>
 15    /// Defines values for Freshness.
 16    /// </summary>
 17    [JsonConverter(typeof(StringEnumConverter))]
 18    public enum Freshness
 19    {
 20        [EnumMember(Value = "Day")]
 21        Day,
 22        [EnumMember(Value = "Week")]
 23        Week,
 24        [EnumMember(Value = "Month")]
 25        Month
 26    }
 27    internal static class FreshnessEnumExtension
 28    {
 29        internal static string ToSerializedValue(this Freshness? value)
 30        {
 031            return value == null ? null : ((Freshness)value).ToSerializedValue();
 32        }
 33
 34        internal static string ToSerializedValue(this Freshness value)
 35        {
 36            switch( value )
 37            {
 38                case Freshness.Day:
 039                    return "Day";
 40                case Freshness.Week:
 041                    return "Week";
 42                case Freshness.Month:
 043                    return "Month";
 44            }
 045            return null;
 46        }
 47
 48        internal static Freshness? ParseFreshness(this string value)
 49        {
 50            switch( value )
 51            {
 52                case "Day":
 053                    return Freshness.Day;
 54                case "Week":
 055                    return Freshness.Week;
 56                case "Month":
 057                    return Freshness.Month;
 58            }
 059            return null;
 60        }
 61    }
 62}