Push() 공개 메소드

public Push ( string data ) : string
data string
리턴 string
예제 #1
0
파일: Fuse.cs 프로젝트: ozgurrgul/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);
    }
예제 #2
0
파일: Fuse.cs 프로젝트: 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;
 }