Search Results for

    Show / Hide Table of Contents

    Class AzureTaggingConfiguration

    Options for Azure tagging

    Inheritance
    object
    TaggingConfigurationBase
    AzureTaggingConfiguration
    Inherited Members
    TaggingConfigurationBase.EnableImageAnalytics
    TaggingConfigurationBase.EnableLegacyTaggingBehavior
    TaggingConfigurationBase.DefaultTagOutputFormatId
    TaggingConfigurationBase.DefaultKeywordLookupCacheName
    TaggingConfigurationBase.DefaultTaggingLayerId
    TaggingConfigurationBase.DefaultFoundTagsFieldId
    TaggingConfigurationBase.DefaultMissingKeywordsFieldId
    TaggingConfigurationBase.UseDownloadLink
    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 AzureTaggingConfiguration : TaggingConfigurationBase

    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.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
    public decimal MinimumValue { get; set; }
    Property Value
    decimal

    Methods

    FromJson(string)

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

    Returns
    AzureTaggingConfiguration

    ToJson()

    Declaration
    public string ToJson()
    Returns
    string

    Back to top Generated by DocFX