InputFieldMappingEntry Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
InputFieldMappingEntry() |
Initializes a new instance of the InputFieldMappingEntry class. |
InputFieldMappingEntry(String, String, String, IList<InputFieldMappingEntry>) |
Initializes a new instance of the InputFieldMappingEntry class. |
InputFieldMappingEntry()
- Source:
- InputFieldMappingEntry.cs
Initializes a new instance of the InputFieldMappingEntry class.
public InputFieldMappingEntry ();
Public Sub New ()
Applies to
InputFieldMappingEntry(String, String, String, IList<InputFieldMappingEntry>)
- Source:
- InputFieldMappingEntry.cs
Initializes a new instance of the InputFieldMappingEntry class.
public InputFieldMappingEntry (string name, string source = default, string sourceContext = default, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.InputFieldMappingEntry> inputs = default);
new Microsoft.Azure.Search.Models.InputFieldMappingEntry : string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.InputFieldMappingEntry> -> Microsoft.Azure.Search.Models.InputFieldMappingEntry
Public Sub New (name As String, Optional source As String = Nothing, Optional sourceContext As String = Nothing, Optional inputs As IList(Of InputFieldMappingEntry) = Nothing)
Parameters
- name
- String
The name of the input.
- source
- String
The source of the input.
- sourceContext
- String
The source context used for selecting recursive inputs.
- inputs
- IList<InputFieldMappingEntry>
The recursive inputs used when creating a complex type.
Applies to
Azure SDK for .NET