CQRSalad.Tests.Dispatcher.TestHandler.HandleWithResponseAsync C# (CSharp) Method

HandleWithResponseAsync() public method

public HandleWithResponseAsync ( TestCommand message ) : Task
message TestCommand
return Task
        public async Task<string> HandleWithResponseAsync(TestCommand message)
        {
            return await Task.FromResult("HandledAsync");
        }
    }