コード例 #1
0
ファイル: ServerResponse.cs プロジェクト: nirmana/SignalR
 public ServerResponse(IDictionary<string, object> environment)
 {
     _response = new OwinResponse(environment);
     _callCancelled = _response.Get<CancellationToken>(OwinConstants.CallCancelled);
     _responseBody = _response.Body;
 }