< Summary

Class:Microsoft.Azure.CognitiveServices.Search.VisualSearch.Models.RecipesModule
Assembly:Microsoft.Azure.CognitiveServices.Search.BingVisualSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVisualSearch\src\Generated\Models\RecipesModule.cs
Covered lines:0
Uncovered lines:6
Coverable lines:6
Total lines:49
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_Value()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVisualSearch\src\Generated\Models\RecipesModule.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.VisualSearch.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Collections;
 11    using System.Collections.Generic;
 12    using System.Linq;
 13
 14    /// <summary>
 15    /// Defines a list of recipes.
 16    /// </summary>
 17    public partial class RecipesModule
 18    {
 19        /// <summary>
 20        /// Initializes a new instance of the RecipesModule class.
 21        /// </summary>
 022        public RecipesModule()
 23        {
 24            CustomInit();
 025        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the RecipesModule class.
 29        /// </summary>
 30        /// <param name="value">A list of recipes.</param>
 031        public RecipesModule(IList<Recipe> value = default(IList<Recipe>))
 32        {
 033            Value = value;
 34            CustomInit();
 035        }
 36
 37        /// <summary>
 38        /// An initialization method that performs custom operations like setting defaults
 39        /// </summary>
 40        partial void CustomInit();
 41
 42        /// <summary>
 43        /// Gets a list of recipes.
 44        /// </summary>
 45        [JsonProperty(PropertyName = "value")]
 046        public IList<Recipe> Value { get; private set; }
 47
 48    }
 49}

Methods/Properties

.ctor()
.ctor(...)
get_Value()