< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_ContentUrl()-0%100%
get_HostPageUrl()-100%100%
get_Width()-0%100%
get_Height()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingVideoSearch\src\Generated\VideoSearch\Models\MediaObject.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 MediaObject : CreativeWork
 15    {
 16        /// <summary>
 17        /// Initializes a new instance of the MediaObject class.
 18        /// </summary>
 51619        public MediaObject()
 20        {
 21            CustomInit();
 51622        }
 23
 24        /// <summary>
 25        /// Initializes a new instance of the MediaObject class.
 26        /// </summary>
 27        /// <param name="id">A String identifier.</param>
 28        /// <param name="webSearchUrl">The URL To Bing's search result for this
 29        /// item.</param>
 30        /// <param name="name">The name of the thing represented by this
 31        /// object.</param>
 32        /// <param name="url">The URL to get more information about the thing
 33        /// represented by this object.</param>
 34        /// <param name="description">A short description of the item.</param>
 35        /// <param name="bingId">An ID that uniquely identifies this
 36        /// item.</param>
 37        /// <param name="thumbnailUrl">The URL to a thumbnail of the
 38        /// item.</param>
 39        /// <param name="provider">The source of the creative work.</param>
 40        /// <param name="contentUrl">Original URL to retrieve the source (file)
 41        /// for the media object (e.g the source URL for the image).</param>
 42        /// <param name="hostPageUrl">URL of the page that hosts the media
 43        /// object.</param>
 44        /// <param name="width">The width of the source media object, in
 45        /// pixels.</param>
 46        /// <param name="height">The height of the source media object, in
 47        /// pixels.</param>
 48        public MediaObject(string id = default(string), string webSearchUrl = default(string), string name = default(str
 049            : base(id, webSearchUrl, name, url, image, description, alternateName, bingId, thumbnailUrl, provider, text)
 50        {
 051            ContentUrl = contentUrl;
 052            HostPageUrl = hostPageUrl;
 053            Width = width;
 054            Height = height;
 55            CustomInit();
 056        }
 57
 58        /// <summary>
 59        /// An initialization method that performs custom operations like setting defaults
 60        /// </summary>
 61        partial void CustomInit();
 62
 63        /// <summary>
 64        /// Gets original URL to retrieve the source (file) for the media
 65        /// object (e.g the source URL for the image).
 66        /// </summary>
 67        [JsonProperty(PropertyName = "contentUrl")]
 068        public string ContentUrl { get; private set; }
 69
 70        /// <summary>
 71        /// Gets URL of the page that hosts the media object.
 72        /// </summary>
 73        [JsonProperty(PropertyName = "hostPageUrl")]
 16074        public string HostPageUrl { get; private set; }
 75
 76        /// <summary>
 77        /// Gets the width of the source media object, in pixels.
 78        /// </summary>
 79        [JsonProperty(PropertyName = "width")]
 080        public int? Width { get; private set; }
 81
 82        /// <summary>
 83        /// Gets the height of the source media object, in pixels.
 84        /// </summary>
 85        [JsonProperty(PropertyName = "height")]
 086        public int? Height { get; private set; }
 87
 88    }
 89}