ASCOM.cam8_v05.Camera.CommandBlind C# (CSharp) Method

CommandBlind() public method

public CommandBlind ( string command, bool raw ) : void
command string
raw bool
return void
        public void CommandBlind(string command, bool raw)
        {
            CheckConnected("CommandBlind");
            // Call CommandString and return as soon as it finishes
            this.CommandString(command, raw);
            // or
            throw new ASCOM.MethodNotImplementedException("CommandBlind");
        }