System.Web.UI.TemplateControlParser.GetCompiledInstance C# (CSharp) Méthode

GetCompiledInstance() private méthode

private GetCompiledInstance ( ) : object
Résultat 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;
		}