MQL4CSharp.Base.MQL.MQLCommandRequest.MQLCommandRequest C# (CSharp) Метод

MQLCommandRequest() публичный Метод

public MQLCommandRequest ( int id, MQLCommand command, List parameters ) : System
id int
command MQLCommand
parameters List
Результат System
        public MQLCommandRequest(int id, MQLCommand command, List<object> parameters)
        {
            LOG.DebugFormat("MQLCommandRequest: {0} {1}", id, command.ToString());
            this.id = id;
            this.command = command;
            this.parameters = parameters;
            this.error = 0;
            this.commandWaiting = true;
        }