AuctionSniper.Test.FakeAuctionServer.Stop C# (CSharp) Method

Stop() public method

public Stop ( ) : void
return void
        public void Stop()
        {
            if (! this.Connection.IsAuthenticated) return;

            this.Connection.Close();
            ConsoleAppHelper.WaitDisconnectingTo(this.Connection);
        }

Usage Example

 public void StopAuction()
 {
     mRunner.Stop();
     mAuction.Stop();
 }
All Usage Examples Of AuctionSniper.Test.FakeAuctionServer::Stop