System.Web.UI.TemplateControlParser.GetCompiledInstance C# (CSharp) Метод

GetCompiledInstance() приватный Метод

private GetCompiledInstance ( ) : object
Результат object
		internal object GetCompiledInstance ()
		{
			Type type = CompileIntoType ();
			if (type == null)
				return null;

			object ctrl = Activator.CreateInstance (type);
			if (ctrl == null)
				return null;

			HandleOptions (ctrl);
			return ctrl;
		}