< Summary

Class:Microsoft.Azure.CognitiveServices.Search.LocalSearch.Models.Answer
Assembly:Microsoft.Azure.CognitiveServices.Search.BingLocalSearch
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingLocalSearch\src\Generated\LocalSearch\Models\Answer.cs
Covered lines:0
Uncovered lines:4
Coverable lines:4
Total lines:45
Line coverage:0% (0 of 4)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Search.BingLocalSearch\src\Generated\LocalSearch\Models\Answer.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.LocalSearch.Models
 8{
 9    using System.Collections;
 10    using System.Collections.Generic;
 11    using System.Linq;
 12
 13    /// <summary>
 14    /// Defines an answer.
 15    /// </summary>
 16    public partial class Answer : Response
 17    {
 18        /// <summary>
 19        /// Initializes a new instance of the Answer class.
 20        /// </summary>
 021        public Answer()
 22        {
 23            CustomInit();
 024        }
 25
 26        /// <summary>
 27        /// Initializes a new instance of the Answer class.
 28        /// </summary>
 29        /// <param name="id">A String identifier.</param>
 30        /// <param name="readLink">The URL that returns this resource.</param>
 31        /// <param name="webSearchUrl">The URL to Bing's search result for this
 32        /// item.</param>
 33        public Answer(string id = default(string), string readLink = default(string), string webSearchUrl = default(stri
 034            : base(id, readLink, webSearchUrl, potentialAction, immediateAction, preferredClickthroughUrl, adaptiveCard)
 35        {
 36            CustomInit();
 037        }
 38
 39        /// <summary>
 40        /// An initialization method that performs custom operations like setting defaults
 41        /// </summary>
 42        partial void CustomInit();
 43
 44    }
 45}

Methods/Properties

.ctor()
.ctor(...)