Calyptus.Mvc.WebFormsViewFactory.InitMasterRecursively C# (CSharp) Method

InitMasterRecursively() static private method

static private InitMasterRecursively ( IView v, IViewTemplate t ) : void
v IView
t IViewTemplate
return void
		internal static void InitMasterRecursively(IView v, IViewTemplate t)
		{
			IViewTemplate m = GetMasterOf(t);
			while (m != null)
			{
				v = GetMasterInstance(m, v);
				m = GetMasterOf(m);
			}
		}