コード例 #1
0
ファイル: ClientDriver.cs プロジェクト: tospie/FiVES
        void HandleTimeDelayEstimated(object sender, TimeDelayEventArgs e)
        {
            logger.Info("Delay to server is " + e.TimeDelayMs);

            logger.Info("Authenticating as a client");

            Authenticator authenticator = new Authenticator(communicator);

            authenticator.Authenticated += HandleAuthenticated;
        }
コード例 #2
0
        void HandleTimeDelayEstimated(object sender, TimeDelayEventArgs e)
        {
            logger.Info("Delay to server is " + e.TimeDelayMs);

            logger.Info("Authenticating as a client");

            Authenticator authenticator = new Authenticator(communicator);
            authenticator.Authenticated += HandleAuthenticated;
        }