Configuration\PagesSection.cs (7)
369Type pageBaseType = ConfigUtil.GetType(PageBaseType, "pageBaseType", this);
370ConfigUtil.CheckBaseType(typeof(System.Web.UI.Page), pageBaseType, "pageBaseType", this);
386Type userControlBaseType = ConfigUtil.GetType(
390ConfigUtil.CheckBaseType(typeof(System.Web.UI.UserControl),
422Type pageParserFilterType = ConfigUtil.GetType(PageParserFilterType, "pageParserFilterType", this);
423ConfigUtil.CheckBaseType(typeof(PageParserFilter), pageParserFilterType, "pageParserFilterType", this);
792ConfigUtil.SetFX45DefaultValue(this, _propControlRenderingCompatibilityVersion, VersionUtil.Framework45);
State\SessionStateModule.cs (4)
303resolverType = ConfigUtil.GetType(partitionResolverType, "partitionResolverType", config);
304ConfigUtil.CheckAssignableType(typeof(IPartitionResolver), resolverType, config, "partitionResolverType");
323managerType = ConfigUtil.GetType(sessionIDManagerType, "sessionIDManagerType", config);
324ConfigUtil.CheckAssignableType(typeof(ISessionIDManager), managerType, config, "sessionIDManagerType");