コード例 #1
0
ファイル: RemoteState.cs プロジェクト: raigunn/ShipNotifier
 public RemoteState(IShipHandle iShipHandle, ManualResetEvent manualEvent, IHttpWebRequest request)
 {
     Request = request;
     IShipHandle = iShipHandle;
     ManualEvent = manualEvent;
 }
コード例 #2
0
ファイル: LocalState.cs プロジェクト: raigunn/ShipNotifier
 public LocalState(IShipHandle iShipHandle, ManualResetEvent manualEvent, NotifyDelegate notifyDelegate)
 {
     ManualResetEvent = manualEvent;
     NotifyDelegate = notifyDelegate;
     IShipHandle = iShipHandle;
 }