23 references to GetType
System.Web (14)
Cache\SubstitutionResponseElement.cs (1)
38Type target = BuildManager.GetType(_targetTypeName, true /*throwOnFail*/, false /*ignoreCase*/);
Compilation\BuildManager.cs (1)
1292return GetType(typeName, throwOnError, false);
Configuration\ConfigUtil.cs (1)
39val = BuildManager.GetType(typeName, true /*throwOnError*/, ignoreCase);
Configuration\HandlerFactoryCache.cs (1)
72return BuildManager.GetType(type, throwOnError: true, ignoreCase: false);
Configuration\HttpCapabilitiesBase.cs (2)
176Type writerType = BuildManager.GetType(mtw, true /* throwOnFail */, false /* ignoreCase */); 274adapterType = BuildManager.GetType(adapterTypename, false, false);
Handlers\AssemblyResourceLoader.cs (1)
101_handlerExists = (typeof(AssemblyResourceLoader) == BuildManager.GetType(handlerTypeString, true /*throwOnFail*/, false /*ignoreCase*/));
HttpCachePolicy.cs (1)
337target = BuildManager.GetType(targetTypeName, true /*throwOnFail*/, false /*ignoreCase*/);
Profile\HttpProfileBase.cs (2)
222t = BuildManager.GetType(InheritsFromTypeString, true, true); 619return BuildManager.GetType(typeName, true, true);
UI\ClientScriptManager.cs (1)
1484_type = BuildManager.GetType(_typeNameForSerialization, true /*throwOnFail*/, false /*ignoreCase*/);
UI\WebControls\ModelDataSourceView.cs (1)
1289return BuildManager.GetType(modelTypeName, true, true);
UI\WebControls\ObjectDataSourceView.cs (2)
1605Type type = BuildManager.GetType(TypeName, false, true); 2032Type dataObjectType = BuildManager.GetType(dataObjectTypeName, false, true);
System.Web.DynamicData (3)
DynamicData\DynamicHyperLink.cs (1)
257Type contextType = BuildManager.GetType(contextTypeName, /* throwOnError */ true, /* ignoreCase */ true);
DynamicData\FilterRepeater.cs (1)
154contextType = BuildManager.GetType(contextTypeName, /*throwOnError*/ true, /*ignoreCase*/ true);
DynamicData\FilterUserControlBase.cs (1)
202contextType = BuildManager.GetType(contextTypeName, /*throwOnError*/ true, /*ignoreCase*/ true);
System.Web.Entity (1)
System\Data\WebControls\EntityDataSource.cs (1)
277_contextType = System.Web.Compilation.BuildManager.GetType(value, /*throwOnError*/false, /*ignoreCase*/true);
System.Web.Extensions (5)
UI\WebControls\ContextDataSourceView.cs (1)
156entityType = BuildManager.GetType(typeName, /*throwOnFail*/ false, /*ignoreCase*/ true);
UI\WebControls\DataSourceHelper.cs (1)
102return BuildManager.GetType(typeName, true /* throwOnError */, true /* ignoreCase */);
UI\WebControls\Expressions\MethodExpression.cs (1)
61return BuildManager.GetType(typeName, false /* throwOnError */, true /* ignoreCase */);
UI\WebControls\Expressions\OfTypeExpression.cs (1)
64return BuildManager.GetType(typeName, true /* throwOnError */, true /* ignoreCase */);
UI\WebControls\LinqDataSourceView.cs (1)
117_contextType = BuildManager.GetType(typeName, /*throwOnFail*/true, /*ignoreCase*/true);