BigML.Client.CreateExecution C# (CSharp) Method

CreateExecution() public method

Create a whizzml execution using the supplied arguments.
public CreateExecution ( Execution arguments ) : Task
arguments Execution
return Task
        public Task<Execution> CreateExecution(Execution.Arguments arguments)
        {
            return Create<Execution>(arguments);
        }

Same methods

Client::CreateExecution ( Script script, string name = null, Execution arguments = null ) : Task