Start() public method

public Start ( Func action, object>.IDictionary initialMessage, int timeout ) : void
action Func
initialMessage object>.IDictionary
timeout int
return void
Beispiel #1
0
 private void FakeClientToWakeEmAndShakem()
 {
     try
     {
         PipeClient client = new PipeClient(Name);
         client.Start(((r, w) => { return(false); }), null, 100);
     }
     catch { /* intentionally ignored */ }
 }
Beispiel #2
0
 private void FakeClientToWakeEmAndShakem()
 {
     try
     {
         PipeClient client = new PipeClient(Name);
         client.Start(((r, w) => { return false; }), null, 100);
     }
     catch { /* intentionally ignored */ }
 }