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

CommandBool() public method

public CommandBool ( string command, bool raw ) : bool
command string
raw bool
return bool
        public bool CommandBool(string command, bool raw)
        {
            CheckConnected("CommandBool");
            string ret = CommandString(command, raw);
            // TODO decode the return string and return true or false
            // or
            throw new ASCOM.MethodNotImplementedException("CommandBool");
        }