Inheritance: System.EventArgs
Ejemplo n.º 1
0
		protected void OnBeforeRender(IHttpContext context, BeforeRenderEventArgs args)
		{
			if (ControllerExtensions != null)
				foreach (IExtension ext in ControllerExtensions)
					ext.OnBeforeRender(context, args);
			if (ActionExtensions != null)
				foreach (IExtension ext in ActionExtensions)
					ext.OnBeforeRender(context, args);
		}
Ejemplo n.º 2
0
		public void OnBeforeRender(IHttpContext context, BeforeRenderEventArgs args) { }