Server.Items.WaitTeleporter.EventSink_Logout C# (CSharp) Méthode

EventSink_Logout() public static méthode

public static EventSink_Logout ( LogoutEventArgs e ) : void
e LogoutEventArgs
Résultat void
		public static void EventSink_Logout(LogoutEventArgs e)
		{
			Mobile from = e.Mobile;
			TeleportingInfo info;

			if (from == null || !m_Table.TryGetValue(from, out info))
				return;

			info.Timer.Stop();
			m_Table.Remove(from);
		}