コード例 #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
ファイル: Hubs.cs プロジェクト: theseventhman/AspNetCore
 public ChannelReader <int> StreamEchoInt(ChannelReader <int> source) => TestHubMethodsImpl.StreamEchoInt(source);
コード例 #7
0
ファイル: Hubs.cs プロジェクト: theseventhman/AspNetCore
 public ChannelReader <string> StreamEcho(ChannelReader <string> source) => TestHubMethodsImpl.StreamEcho(source);
コード例 #8
0
 public IObservable <int> Stream(int count) => TestHubMethodsImpl.Stream(count);