System.Web.Compilation.AspComponentFoundry.TagNameFoundry.GetType C# (CSharp) Méthode

GetType() public méthode

public GetType ( string componentName, string &source, string &ns ) : Type
componentName string
source string
ns string
Résultat System.Type
			public override Type GetType (string componentName, out string source, out string ns)
			{
				source = null;
				ns = null;
				if (0 != String.Compare (componentName, tagName, true, Helpers.InvariantCulture))
					return null;

				source = this.source;
				return LoadType ();
			}
AspComponentFoundry.TagNameFoundry