Field Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
Field(String, AnalyzerName) |
Initialise un nouveau champ de chaîne pouvant faire l’objet d’une recherche avec les arguments requis. |
Field(String, DataType) |
Initialise un nouveau champ simple avec les arguments requis. |
Field(String, DataType, AnalyzerName) |
Initialise un nouveau champ simple pouvant faire l’objet d’une recherche avec les arguments requis. |
Field(String, DataType, IList<Field>) |
Initialise un nouveau champ complexe avec les arguments requis. |
Field(String, AnalyzerName)
- Source:
- Field.Customization.cs
Initialise un nouveau champ de chaîne pouvant faire l’objet d’une recherche avec les arguments requis.
public Field (string name, Microsoft.Azure.Search.Models.AnalyzerName analyzerName);
new Microsoft.Azure.Search.Models.Field : string * Microsoft.Azure.Search.Models.AnalyzerName -> Microsoft.Azure.Search.Models.Field
Public Sub New (name As String, analyzerName As AnalyzerName)
Paramètres
- name
- String
Nom du champ de chaîne.
- analyzerName
- AnalyzerName
Nom de l’analyseur à utiliser pour le champ simple.
Remarques
Le nouveau champ peut automatiquement faire l’objet d’une recherche et de type Edm.String.
S’applique à
Field(String, DataType)
- Source:
- Field.Customization.cs
Initialise un nouveau champ simple avec les arguments requis.
public Field (string name, Microsoft.Azure.Search.Models.DataType dataType);
new Microsoft.Azure.Search.Models.Field : string * Microsoft.Azure.Search.Models.DataType -> Microsoft.Azure.Search.Models.Field
Public Sub New (name As String, dataType As DataType)
Paramètres
- name
- String
Nom du champ simple.
- dataType
- DataType
Type de données du champ simple. Ne peut pas être un type complexe.
Exceptions
Levée si dataType
est un type complexe.
S’applique à
Field(String, DataType, AnalyzerName)
- Source:
- Field.Customization.cs
Initialise un nouveau champ simple pouvant faire l’objet d’une recherche avec les arguments requis.
public Field (string name, Microsoft.Azure.Search.Models.DataType dataType, Microsoft.Azure.Search.Models.AnalyzerName analyzerName);
new Microsoft.Azure.Search.Models.Field : string * Microsoft.Azure.Search.Models.DataType * Microsoft.Azure.Search.Models.AnalyzerName -> Microsoft.Azure.Search.Models.Field
Public Sub New (name As String, dataType As DataType, analyzerName As AnalyzerName)
Paramètres
- name
- String
Nom du champ simple.
- dataType
- DataType
Type de données du champ. Ne peut pas être un type complexe.
- analyzerName
- AnalyzerName
Nom de l’analyseur à utiliser pour le champ.
Exceptions
Levée si dataType
est un type complexe.
Remarques
Le nouveau champ peut automatiquement faire l’objet d’une recherche.
S’applique à
Field(String, DataType, IList<Field>)
- Source:
- Field.Customization.cs
Initialise un nouveau champ complexe avec les arguments requis.
public Field (string name, Microsoft.Azure.Search.Models.DataType dataType, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.Field> fields);
new Microsoft.Azure.Search.Models.Field : string * Microsoft.Azure.Search.Models.DataType * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.Field> -> Microsoft.Azure.Search.Models.Field
Public Sub New (name As String, dataType As DataType, fields As IList(Of Field))
Paramètres
- name
- String
Nom du champ complexe.
- dataType
- DataType
Type de données du champ. Doit être un type complexe.
Sous-champs qui composent le type complexe. Il peut s’agir de champs simples ou complexes.
Exceptions
Levée si dataType
n’est pas un type complexe.
Levée si fields
a la valeur null.
Levée si fields
est vide.
S’applique à
Azure SDK for .NET