CodeValue.CodeCommander.Tests.Mocks.TestCommand.InterpretResponse C# (CSharp) Method

InterpretResponse() public method

public InterpretResponse ( ProcessorInput response ) : bool
response ProcessorInput
return bool
        public override bool InterpretResponse(ProcessorInput response)
        {
            if (_interpretResponseAction != null) return _interpretResponseAction(response);
            return false;
        }