Skillset Constructors

Definition

Overloads

Skillset()

Initializes a new instance of the Skillset class.

Skillset(String, String, IList<Skill>, CognitiveServices, String)

Initializes a new instance of the Skillset class.

Skillset()

Source:
Skillset.cs

Initializes a new instance of the Skillset class.

public Skillset ();
Public Sub New ()

Applies to

Skillset(String, String, IList<Skill>, CognitiveServices, String)

Source:
Skillset.cs

Initializes a new instance of the Skillset class.

public Skillset (string name, string description, System.Collections.Generic.IList<Microsoft.Azure.Search.Models.Skill> skills, Microsoft.Azure.Search.Models.CognitiveServices cognitiveServices = default, string eTag = default);
new Microsoft.Azure.Search.Models.Skillset : string * string * System.Collections.Generic.IList<Microsoft.Azure.Search.Models.Skill> * Microsoft.Azure.Search.Models.CognitiveServices * string -> Microsoft.Azure.Search.Models.Skillset
Public Sub New (name As String, description As String, skills As IList(Of Skill), Optional cognitiveServices As CognitiveServices = Nothing, Optional eTag As String = Nothing)

Parameters

name
String

The name of the skillset.

description
String

The description of the skillset.

skills
IList<Skill>

A list of skills in the skillset.

cognitiveServices
CognitiveServices

Details about cognitive services to be used when running skills.

eTag
String

The ETag of the skillset.

Applies to