System.Web.UI.UserControlParser.ProcessMainAttributes C# (CSharp) Method

ProcessMainAttributes() private method

private ProcessMainAttributes ( IDictionary atts ) : void
atts IDictionary
return void
		internal override void ProcessMainAttributes (IDictionary atts)
		{
#if NET_2_0
			masterPage = GetString (atts, "MasterPageFile", null);
			if (masterPage != null)
				AddDependency (masterPage);
#endif

			base.ProcessMainAttributes (atts);
		}