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