Server.Gumps.AdminGump.AddTagValuePrompt.OnResponse C# (CSharp) Méthode

OnResponse() public méthode

public OnResponse ( Mobile from, string text ) : void
from Mobile
text string
Résultat void
			public override void OnResponse( Mobile from, string text )
			{
				if ( m_Account != null )
				{
					m_Account.AddTag( m_Name, text );
					from.SendGump( new AdminGump( from, AdminGumpPage.AccountDetails_Tags, 0, null, "Tag added.", m_Account ) );
				}
			}
		}