< Summary

Class:Azure.AI.TextAnalytics.TextDocumentInput
Assembly:Azure.AI.TextAnalytics
File(s):C:\Git\azure-sdk-for-net\sdk\textanalytics\Azure.AI.TextAnalytics\src\TextDocumentInput.cs
Covered lines:2
Uncovered lines:0
Coverable lines:2
Total lines:30
Line coverage:100% (2 of 2)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\textanalytics\Azure.AI.TextAnalytics\src\TextDocumentInput.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4namespace Azure.AI.TextAnalytics
 5{
 6    /// <summary>
 7    /// An input representing an individual text document to
 8    /// be analyzed by the Text Analytics predictive model for a given operation.
 9    /// The document contains the document's id, the full text of the document,
 10    /// and the language that the document is written in.
 11    /// </summary>
 12    public class TextDocumentInput : TextAnalyticsInput
 13    {
 14        /// <summary>
 15        /// </summary>
 16        /// <param name="id">The id of the document represented by this instance.
 17        /// The id must be unique within the batch of documents analyzed in a
 18        /// given operation.</param>
 19        /// <param name="text">The text of the document.</param>
 61620        public TextDocumentInput(string id, string text) : base(id, text) { }
 21
 22        /// <summary>
 23        /// Gets or sets the language the input document is written in.  This
 24        /// value is the two letter ISO 639-1 representation of the language
 25        /// (for example, "en" for English or "es" for Spanish).
 26        /// </summary>
 60027        public string Language { get; set; }
 28
 29    }
 30}

Methods/Properties

.ctor(...)
get_Language()