< Summary

Class:Microsoft.Azure.CognitiveServices.Search.CustomImageSearch.Models.MediaObject
Assembly:Microsoft.Azure.CognitiveServices.Search.BingCustomImageSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingCustomImageSearch\src\Generated\CustomImageSearch\Models\MediaObject.cs
Covered lines:3
Uncovered lines:15
Coverable lines:18
Total lines:124
Line coverage:16.6% (3 of 18)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingCustomImageSearch\src\Generated\CustomImageSearch\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.CustomImageSearch.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 media object.
 16    /// </summary>
 17    public partial class MediaObject : CreativeWork
 18    {
 19        /// <summary>
 20        /// Initializes a new instance of the MediaObject class.
 21        /// </summary>
 14022        public MediaObject()
 23        {
 24            CustomInit();
 14025        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the MediaObject class.
 29        /// </summary>
 30        /// <param name="id">A String identifier.</param>
 31        /// <param name="readLink">The URL that returns this resource.</param>
 32        /// <param name="webSearchUrl">The URL To Bing's search result for this
 33        /// item.</param>
 34        /// <param name="name">The name of the thing represented by this
 35        /// object.</param>
 36        /// <param name="url">The URL to get more information about the thing
 37        /// represented by this object.</param>
 38        /// <param name="image">An image of the item.</param>
 39        /// <param name="description">A short description of the item.</param>
 40        /// <param name="alternateName">An alias for the item</param>
 41        /// <param name="bingId">An ID that uniquely identifies this
 42        /// item.</param>
 43        /// <param name="thumbnailUrl">The URL to a thumbnail of the
 44        /// item.</param>
 45        /// <param name="provider">The source of the creative work.</param>
 46        /// <param name="text">Text content of this creative work</param>
 47        /// <param name="contentUrl">Original URL to retrieve the source (file)
 48        /// for the media object (e.g the source URL for the image).</param>
 49        /// <param name="hostPageUrl">URL of the page that hosts the media
 50        /// object.</param>
 51        /// <param name="contentSize">Size of the media object content (use
 52        /// format "value unit" e.g "1024 B").</param>
 53        /// <param name="encodingFormat">Encoding format (e.g mp3, mp4, jpeg,
 54        /// etc).</param>
 55        /// <param name="hostPageDisplayUrl">Display URL of the page that hosts
 56        /// the media object.</param>
 57        /// <param name="width">The width of the media object, in
 58        /// pixels.</param>
 59        /// <param name="height">The height of the media object, in
 60        /// pixels.</param>
 61        public MediaObject(string id = default(string), string readLink = default(string), string webSearchUrl = default
 062            : base(id, readLink, webSearchUrl, name, url, image, description, alternateName, bingId, thumbnailUrl, provi
 63        {
 064            ContentUrl = contentUrl;
 065            HostPageUrl = hostPageUrl;
 066            ContentSize = contentSize;
 067            EncodingFormat = encodingFormat;
 068            HostPageDisplayUrl = hostPageDisplayUrl;
 069            Width = width;
 070            Height = height;
 71            CustomInit();
 072        }
 73
 74        /// <summary>
 75        /// An initialization method that performs custom operations like setting defaults
 76        /// </summary>
 77        partial void CustomInit();
 78
 79        /// <summary>
 80        /// Gets original URL to retrieve the source (file) for the media
 81        /// object (e.g the source URL for the image).
 82        /// </summary>
 83        [JsonProperty(PropertyName = "contentUrl")]
 7284        public string ContentUrl { get; private set; }
 85
 86        /// <summary>
 87        /// Gets URL of the page that hosts the media object.
 88        /// </summary>
 89        [JsonProperty(PropertyName = "hostPageUrl")]
 090        public string HostPageUrl { get; private set; }
 91
 92        /// <summary>
 93        /// Gets size of the media object content (use format "value unit" e.g
 94        /// "1024 B").
 95        /// </summary>
 96        [JsonProperty(PropertyName = "contentSize")]
 097        public string ContentSize { get; private set; }
 98
 99        /// <summary>
 100        /// Gets encoding format (e.g mp3, mp4, jpeg, etc).
 101        /// </summary>
 102        [JsonProperty(PropertyName = "encodingFormat")]
 0103        public string EncodingFormat { get; private set; }
 104
 105        /// <summary>
 106        /// Gets display URL of the page that hosts the media object.
 107        /// </summary>
 108        [JsonProperty(PropertyName = "hostPageDisplayUrl")]
 0109        public string HostPageDisplayUrl { get; private set; }
 110
 111        /// <summary>
 112        /// Gets the width of the media object, in pixels.
 113        /// </summary>
 114        [JsonProperty(PropertyName = "width")]
 0115        public int? Width { get; private set; }
 116
 117        /// <summary>
 118        /// Gets the height of the media object, in pixels.
 119        /// </summary>
 120        [JsonProperty(PropertyName = "height")]
 0121        public int? Height { get; private set; }
 122
 123    }
 124}