< Summary

Class:Microsoft.Azure.CognitiveServices.Search.EntitySearch.Models.License
Assembly:Microsoft.Azure.CognitiveServices.Search.BingEntitySearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingEntitySearch\src\Generated\EntitySearch\Models\License.cs
Covered lines:2
Uncovered lines:4
Coverable lines:6
Total lines:70
Line coverage:33.3% (2 of 6)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingEntitySearch\src\Generated\EntitySearch\Models\License.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.EntitySearch.Models
 8{
 9    using System.Collections;
 10    using System.Collections.Generic;
 11    using System.Linq;
 12
 13    /// <summary>
 14    /// Defines the license under which the text or photo may be used.
 15    /// </summary>
 16    public partial class License : CreativeWork
 17    {
 18        /// <summary>
 19        /// Initializes a new instance of the License class.
 20        /// </summary>
 221        public License()
 22        {
 23            CustomInit();
 224        }
 25
 26        /// <summary>
 27        /// Initializes a new instance of the License class.
 28        /// </summary>
 29        /// <param name="id">A String identifier.</param>
 30        /// <param name="contractualRules">A list of rules that you must adhere
 31        /// to if you display the item.</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="description">A short description of the item.</param>
 39        /// <param name="entityPresentationInfo">Additional information about
 40        /// the entity such as hints that you can use to determine the entity's
 41        /// type. To determine the entity's type, use the entityScenario and
 42        /// entityTypeHint fields.</param>
 43        /// <param name="bingId">An ID that uniquely identifies this
 44        /// item.</param>
 45        /// <param name="thumbnailUrl">The URL to a thumbnail of the
 46        /// item.</param>
 47        /// <param name="provider">The source of the creative work.</param>
 48        public License(string id = default(string), IList<ContractualRulesContractualRule> contractualRules = default(IL
 049            : base(id, contractualRules, webSearchUrl, name, url, image, description, entityPresentationInfo, bingId, th
 50        {
 51            CustomInit();
 052        }
 53
 54        /// <summary>
 55        /// An initialization method that performs custom operations like setting defaults
 56        /// </summary>
 57        partial void CustomInit();
 58
 59        /// <summary>
 60        /// Validate the object.
 61        /// </summary>
 62        /// <exception cref="Rest.ValidationException">
 63        /// Thrown if validation fails
 64        /// </exception>
 65        public override void Validate()
 66        {
 067            base.Validate();
 068        }
 69    }
 70}

Methods/Properties

.ctor()
.ctor(...)
Validate()