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

WorkflowGetAll() public static method

Get all the Workflows available for you Team
public static WorkflowGetAll ( this operations, string team, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string) ) : void
operations this /// The operations group for this extension method. ///
team string /// Your Team name ///
subscriptionKey string /// subscription key in url ///
ocpApimSubscriptionKey string /// subscription key in header ///
return void
            public static void WorkflowGetAll(this IContentModeratorReview operations, string team, string subscriptionKey = default(string), string ocpApimSubscriptionKey = default(string))
            {
                System.Threading.Tasks.Task.Factory.StartNew(s => ((IContentModeratorReview)s).WorkflowGetAllAsync(team, subscriptionKey, ocpApimSubscriptionKey), operations, System.Threading.CancellationToken.None, System.Threading.Tasks.TaskCreationOptions.None,  System.Threading.Tasks.TaskScheduler.Default).Unwrap().GetAwaiter().GetResult();
            }