BuildIt.CognitiveServices.ContentModeratorReviewExtensions.WorkflowGetAsync C# (CSharp) Method

WorkflowGetAsync() public static method

Get the details of a specific Workflow on your Team
public static WorkflowGetAsync ( this operations, string team, string workflowname, 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. ///
team string /// Your Team name ///
workflowname string /// Provide a name for this workflow ///
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 WorkflowGetAsync(this IContentModeratorReview operations, string team, string workflowname, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string), System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken))
            {
                await operations.WorkflowGetWithHttpMessagesAsync(team, workflowname, subscriptionKey, ocpApimSubscriptionKey, null, cancellationToken).ConfigureAwait(false);
            }