Compartilhar via


SentimentSkill Construtores

Definição

Sobrecargas

SentimentSkill()

Inicializa uma nova instância da classe SentimentSkill.

SentimentSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, String, Nullable<SentimentSkillLanguage>)

Inicializa uma nova instância da classe SentimentSkill.

SentimentSkill()

Origem:
SentimentSkill.cs

Inicializa uma nova instância da classe SentimentSkill.

public SentimentSkill ();
Public Sub New ()

Aplica-se a

SentimentSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, String, Nullable<SentimentSkillLanguage>)

Origem:
SentimentSkill.cs

Inicializa uma nova instância da classe SentimentSkill.

public SentimentSkill (System.Collections.Generic.IList<Microsoft.Azure.Search.Models.InputFieldMappingEntry> inputs, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.OutputFieldMappingEntry> outputs, string name = default, string description = default, string context = default, Microsoft.Azure.Search.Models.SentimentSkillLanguage? defaultLanguageCode = default);
new Microsoft.Azure.Search.Models.SentimentSkill : System.Collections.Generic.IList<Microsoft.Azure.Search.Models.InputFieldMappingEntry> * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.OutputFieldMappingEntry> * string * string * string * Nullable<Microsoft.Azure.Search.Models.SentimentSkillLanguage> -> Microsoft.Azure.Search.Models.SentimentSkill
Public Sub New (inputs As IList(Of InputFieldMappingEntry), outputs As IList(Of OutputFieldMappingEntry), Optional name As String = Nothing, Optional description As String = Nothing, Optional context As String = Nothing, Optional defaultLanguageCode As Nullable(Of SentimentSkillLanguage) = Nothing)

Parâmetros

inputs
IList<InputFieldMappingEntry>

As entradas das habilidades podem ser uma coluna no conjunto de dados de origem ou a saída de uma habilidade upstream.

outputs
IList<OutputFieldMappingEntry>

A saída de uma habilidade é um campo em um índice de pesquisa ou um valor que pode ser consumido como uma entrada por outra habilidade.

name
String

O nome da habilidade que a identifica exclusivamente dentro do conjunto de habilidades. Uma habilidade sem nome definido receberá um nome padrão de seu índice baseado em 1 na matriz de habilidades, prefixado com o caractere '#'.

description
String

A descrição da habilidade que descreve as entradas, as saídas e o uso da habilidade.

context
String

Representa o nível em que as operações ocorrem, como a raiz do documento ou o conteúdo do documento (por exemplo, /document ou /document/content). O padrão é /document.

defaultLanguageCode
Nullable<SentimentSkillLanguage>

Um valor que indica qual código de idioma usar. O padrão é en. Os valores possíveis incluem: 'da', 'nl', 'en', 'fi', 'fr', 'de', 'el', 'it', 'no', 'pl', 'pt-PT', 'ru', 'es', 'sv', 'tr'

Aplica-se a