System.Web.UI.UserControlParser.ProcessMainAttributes C# (CSharp) 메소드

ProcessMainAttributes() 개인적인 메소드

private ProcessMainAttributes ( IDictionary atts ) : void
atts IDictionary
리턴 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);
		}