Пример #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);