< Summary

Class:Microsoft.Azure.CognitiveServices.Search.VideoSearch.Models.VideosModule
Assembly:Microsoft.Azure.CognitiveServices.Search.BingVideoSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVideoSearch\src\Generated\VideoSearch\Models\VideosModule.cs
Covered lines:3
Uncovered lines:3
Coverable lines:6
Total lines:44
Line coverage:50% (3 of 6)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVideoSearch\src\Generated\VideoSearch\Models\VideosModule.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 System.Collections;
 11    using System.Collections.Generic;
 12    using System.Linq;
 13
 14    public partial class VideosModule
 15    {
 16        /// <summary>
 17        /// Initializes a new instance of the VideosModule class.
 18        /// </summary>
 219        public VideosModule()
 20        {
 21            CustomInit();
 222        }
 23
 24        /// <summary>
 25        /// Initializes a new instance of the VideosModule class.
 26        /// </summary>
 027        public VideosModule(IList<VideoObject> value = default(IList<VideoObject>))
 28        {
 029            Value = value;
 30            CustomInit();
 031        }
 32
 33        /// <summary>
 34        /// An initialization method that performs custom operations like setting defaults
 35        /// </summary>
 36        partial void CustomInit();
 37
 38        /// <summary>
 39        /// </summary>
 40        [JsonProperty(PropertyName = "value")]
 1041        public IList<VideoObject> Value { get; private set; }
 42
 43    }
 44}

Methods/Properties

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