Partager via


ShaperSkill Constructeurs

Définition

Surcharges

ShaperSkill()

Initialise une nouvelle instance de la classe ShaperSkill.

ShaperSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, String)

Initialise une nouvelle instance de la classe ShaperSkill.

ShaperSkill()

Source:
ShaperSkill.cs

Initialise une nouvelle instance de la classe ShaperSkill.

public ShaperSkill ();
Public Sub New ()

S’applique à

ShaperSkill(IList<InputFieldMappingEntry>, IList<OutputFieldMappingEntry>, String, String, String)

Source:
ShaperSkill.cs

Initialise une nouvelle instance de la classe ShaperSkill.

public ShaperSkill (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);
new Microsoft.Azure.Search.Models.ShaperSkill : System.Collections.Generic.IList<Microsoft.Azure.Search.Models.InputFieldMappingEntry> * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.OutputFieldMappingEntry> * string * string * string -> Microsoft.Azure.Search.Models.ShaperSkill
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)

Paramètres

inputs
IList<InputFieldMappingEntry>

Les entrées des compétences peuvent être une colonne dans le jeu de données source ou la sortie d’une compétence amont.

outputs
IList<OutputFieldMappingEntry>

La sortie d’une compétence est soit un champ dans un index de recherche, soit une valeur qui peut être consommée en tant qu’entrée par une autre compétence.

name
String

Nom de la compétence qui l’identifie de manière unique dans l’ensemble de compétences. Une compétence sans nom défini reçoit un nom par défaut de son index 1 dans le tableau de compétences, précédé du caractère « # ».

description
String

Description de la compétence qui décrit les entrées, les sorties et l’utilisation de la compétence.

context
String

Représente le niveau auquel les opérations ont lieu, comme la racine du document ou le contenu du document (par exemple, /document ou /document/content). La valeur par défaut est /document.

S’applique à