Castle.MonoRail.Framework.Services.DefaultControllerDescriptorProvider.CollectClassLevelAttributes C# (CSharp) Method

CollectClassLevelAttributes() private method

Collects the class level attributes.
private CollectClassLevelAttributes ( Type controllerType, ControllerMetaDescriptor descriptor ) : void
controllerType System.Type Type of the controller.
descriptor Castle.MonoRail.Framework.Internal.ControllerMetaDescriptor The descriptor.
return void
		private void CollectClassLevelAttributes(Type controllerType, ControllerMetaDescriptor descriptor)
		{
			CollectHelpers(descriptor, controllerType);
			CollectResources(descriptor, controllerType);
			CollectFilters(descriptor, controllerType);
			CollectLayout(descriptor, controllerType);
			CollectRescues(descriptor, controllerType);
			CollectDefaultAction(descriptor, controllerType);
			CollectScaffolding(descriptor, controllerType);
			CollectDynamicAction(descriptor, controllerType);
		}