EntitiesEntityPresentationInfo 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
EntitiesEntityPresentationInfo() |
Initializes a new instance of the EntitiesEntityPresentationInfo class. |
EntitiesEntityPresentationInfo(String, IList<String>, String) |
Initializes a new instance of the EntitiesEntityPresentationInfo class. |
EntitiesEntityPresentationInfo()
Initializes a new instance of the EntitiesEntityPresentationInfo class.
public EntitiesEntityPresentationInfo ();
Public Sub New ()
Applies to
EntitiesEntityPresentationInfo(String, IList<String>, String)
Initializes a new instance of the EntitiesEntityPresentationInfo class.
public EntitiesEntityPresentationInfo (string entityScenario, System.Collections.Generic.IList<string> entityTypeHints = default, string entityTypeDisplayHint = default);
new Microsoft.Azure.CognitiveServices.Search.EntitySearch.Models.EntitiesEntityPresentationInfo : string * System.Collections.Generic.IList<string> * string -> Microsoft.Azure.CognitiveServices.Search.EntitySearch.Models.EntitiesEntityPresentationInfo
Public Sub New (entityScenario As String, Optional entityTypeHints As IList(Of String) = Nothing, Optional entityTypeDisplayHint As String = Nothing)
Parameters
- entityScenario
- String
The supported scenario. Possible values include: 'DominantEntity', 'DisambiguationItem', 'ListItem'
A list of hints that indicate the entity's type. The list could contain a single hint such as Movie or a list of hints such as Place, LocalBusiness, Restaurant. Each successive hint in the array narrows the entity's type.
- entityTypeDisplayHint
- String
A display version of the entity hint. For example, if entityTypeHints is Artist, this field may be set to American Singer.
Applies to
Azure SDK for .NET