BuildIt.CognitiveServices.AcademicSearchAPIExtensions.GraphSearchAsync C# (CSharp) Method

GraphSearchAsync() public static method

Welcome to the Microsoft Cognitive Service Academic Search API, a web service for retrieving paths and subgraphs from Microsoft Academic Graph. The graph query interface powered by Graph Engine allows us to not only query entities that meet certain criteria (e.g. find a paper with a given title), but also perform pattern matching via graph exploration (e.g. detect co-authorship).
public static GraphSearchAsync ( this operations, string mode, 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. ///
mode string /// Request type of query. Should be "json" or "lambda". Possible values /// include: 'json', 'lambda' ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
cancellationToken System /// The cancellation token. ///
return System.Threading.Tasks.Task
            public static async System.Threading.Tasks.Task GraphSearchAsync(this IAcademicSearchAPI operations, string mode, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
            {
                await operations.GraphSearchWithHttpMessagesAsync(mode, subscriptionKey, ocpApimSubscriptionKey, null, cancellationToken).ConfigureAwait(false);
            }