C# 클래스 BuildIt.CognitiveServices.EntityLinkingAPIExtensions

Extension methods for EntityLinkingAPI.
파일 보기 프로젝트 열기: builttoroam/BuildIt

공개 메소드들

메소드 설명
LinkEntity ( this operations, string selection = default(string), string offset = default(string), string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string) ) : void

Entity Linking is a natural language processing tool to help analyzing text for your application. Entity Linking recognize a named-entity from given text and aligning a textual mention of the entity to an appropriate entry in a knowledge base.

LinkEntityAsync ( this operations, string selection = default(string), string offset = default(string), string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string), System cancellationToken = default(System.Threading.CancellationToken) ) : System.Threading.Tasks.Task

Entity Linking is a natural language processing tool to help analyzing text for your application. Entity Linking recognize a named-entity from given text and aligning a textual mention of the entity to an appropriate entry in a knowledge base.

메소드 상세

LinkEntity() 공개 정적인 메소드

Entity Linking is a natural language processing tool to help analyzing text for your application. Entity Linking recognize a named-entity from given text and aligning a textual mention of the entity to an appropriate entry in a knowledge base.
public static LinkEntity ( this operations, string selection = default(string), string offset = default(string), string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string) ) : void
operations this /// The operations group for this extension method. ///
selection string /// The specific word or phrase within the text that is to be entity linked. /// If not specified, the service will try to recognize and identify all the /// entities within the input text. ///
offset string /// The location (in offset by characters) of the selected word or phrase /// within the input text. Used to distinguish when there are multiple /// instances of the same words or phrases within the input text. Only valid /// when the selection is specified. ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
리턴 void

LinkEntityAsync() 공개 정적인 메소드

Entity Linking is a natural language processing tool to help analyzing text for your application. Entity Linking recognize a named-entity from given text and aligning a textual mention of the entity to an appropriate entry in a knowledge base.
public static LinkEntityAsync ( this operations, string selection = default(string), string offset = default(string), string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string), System cancellationToken = default(System.Threading.CancellationToken) ) : System.Threading.Tasks.Task
operations this /// The operations group for this extension method. ///
selection string /// The specific word or phrase within the text that is to be entity linked. /// If not specified, the service will try to recognize and identify all the /// entities within the input text. ///
offset string /// The location (in offset by characters) of the selected word or phrase /// within the input text. Used to distinguish when there are multiple /// instances of the same words or phrases within the input text. Only valid /// when the selection is specified. ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
cancellationToken System /// The cancellation token. ///
리턴 System.Threading.Tasks.Task