BuildIt.CognitiveServices.EntityLinkingAPIExtensions.LinkEntityAsync C# (CSharp) 메소드

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
            public static async System.Threading.Tasks.Task LinkEntityAsync(this IEntityLinkingAPI operations, string selection = default(string), string offset = default(string), string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
            {
                await operations.LinkEntityWithHttpMessagesAsync(selection, offset, subscriptionKey, ocpApimSubscriptionKey, null, cancellationToken).ConfigureAwait(false);
            }
EntityLinkingAPIExtensions