Aura.Login.LoginServer.RequestDisconnect C# (CSharp) Метод

RequestDisconnect() публичный Метод

Sends request to kill account's connection to all channels.
public RequestDisconnect ( string accountName ) : void
accountName string
Результат void
		public void RequestDisconnect(string accountName)
		{
			// Check if client is connected to this login server.
			var client = this.Server.Clients.FirstOrDefault(a => a.State != ClientState.Dead && a.Account != null && a.Account.Name == accountName);
			if (client != null)
				client.Kill();

			// Send DC request regardless, just in case.
			Send.Internal_RequestDisconnect(accountName);

			// Give everyone a moment to react
			Thread.Sleep(2000);

			// We've DCed from login and told all channels to DC the account.
			// However, if the account is wrongfully marked as being logged
			// in, we still have to set it to false, because the channels
			// and login couldn't find the account.
			this.Database.SetAccountLoggedIn(accountName, false);
		}
	}