< Summary

Class:Microsoft.Azure.CognitiveServices.Search.ImageSearch.Models.RelatedCollectionsModule
Assembly:Microsoft.Azure.CognitiveServices.Search.BingImageSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingImageSearch\src\Generated\ImageSearch\Models\RelatedCollectionsModule.cs
Covered lines:0
Uncovered lines:6
Coverable lines:6
Total lines:50
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.BingImageSearch\src\Generated\ImageSearch\Models\RelatedCollectionsModule.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.ImageSearch.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 webpages that contain related images.
 16    /// </summary>
 17    public partial class RelatedCollectionsModule
 18    {
 19        /// <summary>
 20        /// Initializes a new instance of the RelatedCollectionsModule class.
 21        /// </summary>
 022        public RelatedCollectionsModule()
 23        {
 24            CustomInit();
 025        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the RelatedCollectionsModule class.
 29        /// </summary>
 30        /// <param name="value">A list of webpages that contain related
 31        /// images.</param>
 032        public RelatedCollectionsModule(IList<ImageGallery> value = default(IList<ImageGallery>))
 33        {
 034            Value = value;
 35            CustomInit();
 036        }
 37
 38        /// <summary>
 39        /// An initialization method that performs custom operations like setting defaults
 40        /// </summary>
 41        partial void CustomInit();
 42
 43        /// <summary>
 44        /// Gets a list of webpages that contain related images.
 45        /// </summary>
 46        [JsonProperty(PropertyName = "value")]
 047        public IList<ImageGallery> Value { get; private set; }
 48
 49    }
 50}

Methods/Properties

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