示例#1
0
        public async void ExecAsyncTest()
        {
            var echoResult = await _client.ExecAsync("TestAction", "DoEcho", new[] { new Parameter("par", "TestExecAsync") }, typeof(string));

            echoResult.Should().Be("TestExecAsync");
        }