Search Results for

    Show / Hide Table of Contents

    Class AzureTaggingOptions

    Options for Azure tagging

    Inheritance
    object
    TaggingOptionsBase
    AzureTaggingOptions
    Inherited Members
    TaggingOptionsBase.TagOutputFormatId
    TaggingOptionsBase.KeywordLookupCacheName
    TaggingOptionsBase.TaggingLayerId
    TaggingOptionsBase.FoundTagsFieldId
    TaggingOptionsBase.MissingKeywordsFieldId
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: System.Dynamic.ExpandoObject
    Syntax
    [GeneratedCode("NJsonSchema", "13.20.0.0 (NJsonSchema v10.9.0.0 (Newtonsoft.Json v13.0.0.0))")]
    public class AzureTaggingOptions : TaggingOptionsBase

    Properties

    ApiKey

    API Key to Azure Computer Vision Service (needed for connection)

    Declaration
    [JsonProperty("apiKey", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string ApiKey { get; set; }
    Property Value
    string

    ApiUrl

    Url to Azure Computer Vision Service

    Declaration
    [JsonProperty("apiUrl", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string ApiUrl { get; set; }
    Property Value
    string

    EnableObjectDetection

    Specifies if object detection feature should be enabled

    Declaration
    [JsonProperty("enableObjectDetection", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public bool EnableObjectDetection { get; set; }
    Property Value
    bool

    EnableOcr

    Specifies if OCR feature should be enabled

    Declaration
    [JsonProperty("enableOcr", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public bool EnableOcr { get; set; }
    Property Value
    bool

    EnableTagging

    Specifies if tagging feature should be enabled

    Declaration
    [JsonProperty("enableTagging", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public bool EnableTagging { get; set; }
    Property Value
    bool

    LanguageCode

    Determines the language, list of supported language codes: https://aka.ms/cv-languages

    Declaration
    [JsonProperty("languageCode", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string LanguageCode { get; set; }
    Property Value
    string

    MinimumValue

    Minimum value of confidence to accept the service result

    Declaration
    [JsonProperty("minimumValue", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
    public string MinimumValue { get; set; }
    Property Value
    string

    Methods

    FromJson(string)

    Declaration
    public static AzureTaggingOptions FromJson(string data)
    Parameters
    string data

    Returns
    AzureTaggingOptions

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX