System.Web.UI.WebControls.TextBox.AddParsedSubObject C# (CSharp) Méthode

AddParsedSubObject() protected méthode

protected AddParsedSubObject ( object obj ) : void
obj object
Résultat void
		protected override void AddParsedSubObject (object obj)
		{
			LiteralControl l = obj as LiteralControl;
			if (l != null)
				Text = l.Text;
		}