Connect() private method

private Connect ( ) : void
return void
Exemplo n.º 1
0
    public static int Ping(string host)
    {
        Fuse fuse = new Fuse();

        fuse.Host(host);
        fuse.Connect();
        int time = Environment.TickCount;

        fuse.Push("ping");
        return(Environment.TickCount - time);
    }
Exemplo n.º 2
0
Arquivo: Fuse.cs Projeto: tinspin/fuse
 public static int Ping(string host)
 {
     Fuse fuse = new Fuse();
     fuse.Host(host);
     fuse.Connect();
     int time = Environment.TickCount;
     fuse.Push("ping");
     return Environment.TickCount - time;
 }