예제 #1
0
 public ChannelReader <string> StreamBroken() => TestHubMethodsImpl.StreamBroken();
예제 #2
0
 public ChannelReader <int> Stream(int count) => TestHubMethodsImpl.Stream(count);
예제 #3
0
 public ChannelReader <int> StreamException() => TestHubMethodsImpl.StreamException();
예제 #4
0
 public string Echo(string message) => TestHubMethodsImpl.Echo(message);
예제 #5
0
 public string HelloWorld() => TestHubMethodsImpl.HelloWorld();
예제 #6
0
 public ChannelReader <int> StreamEchoInt(ChannelReader <int> source) => TestHubMethodsImpl.StreamEchoInt(source);
예제 #7
0
 public ChannelReader <string> StreamEcho(ChannelReader <string> source) => TestHubMethodsImpl.StreamEcho(source);
예제 #8
0
 public IObservable <int> Stream(int count) => TestHubMethodsImpl.Stream(count);