PredictionRequest Constructors

Definition

Overloads

PredictionRequest()
PredictionRequest(String, PredictionRequestOptions, IList<ExternalEntity>, IList<DynamicList>)

PredictionRequest()

Source:
PredictionRequest.cs
Source:
PredictionRequest.cs
public PredictionRequest ();
Public Sub New ()

Applies to

PredictionRequest(String, PredictionRequestOptions, IList<ExternalEntity>, IList<DynamicList>)

Source:
PredictionRequest.cs
Source:
PredictionRequest.cs
public PredictionRequest (string query, Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime.Models.PredictionRequestOptions options = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime.Models.ExternalEntity> externalEntities = default, System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime.Models.DynamicList> dynamicLists = default);
new Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime.Models.PredictionRequest : string * Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime.Models.PredictionRequestOptions * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime.Models.ExternalEntity> * System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime.Models.DynamicList> -> Microsoft.Azure.CognitiveServices.Language.LUIS.Runtime.Models.PredictionRequest
Public Sub New (query As String, Optional options As PredictionRequestOptions = Nothing, Optional externalEntities As IList(Of ExternalEntity) = Nothing, Optional dynamicLists As IList(Of DynamicList) = Nothing)

Parameters

query
String
externalEntities
IList<ExternalEntity>
dynamicLists
IList<DynamicList>

Applies to