Start() public méthode

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