Castle.MonoRail.Views.Brail.BrailBase.AddViewComponentProperties C# (CSharp) Метод

AddViewComponentProperties() публичный Метод

Adds the view component newProperties. This will be included in the parameters searching, note that this override the current parameters if there are clashing. The search order is LIFO
public AddViewComponentProperties ( IDictionary newProperties ) : void
newProperties IDictionary The newProperties.
Результат void
		public void AddViewComponentProperties(IDictionary newProperties)
		{
			if (viewComponentsParameters == null)
				viewComponentsParameters = new ArrayList();
			viewComponentsParameters.Insert(0, newProperties);
		}