System.Web.UI.WebControls.ListViewItem.OnBubbleEvent C# (CSharp) Method

OnBubbleEvent() protected method

protected OnBubbleEvent ( object source, EventArgs e ) : bool
source object
e System.EventArgs
return bool
		protected override bool OnBubbleEvent (object source, EventArgs e)
		{
			CommandEventArgs args = e as CommandEventArgs;
			if (args != null) {
				RaiseBubbleEvent (this, new ListViewCommandEventArgs (this, source, args));
				return true;
			}
			
			return base.OnBubbleEvent (source, e);
		}