21 references to Framework45
System.Web (21)
Compilation\BuildResult.cs (1)
1128else if(MultiTargetingUtil.TargetFrameworkVersion >= VersionUtil.Framework45) {
Compilation\PageCodeDomTreeGenerator.cs (1)
428else if (MultiTargetingUtil.TargetFrameworkVersion >= VersionUtil.Framework45) {
Configuration\HttpRuntimeSection.cs (1)
879ConfigUtil.SetFX45DefaultValue(this, _propRequestValidationMode, VersionUtil.Framework45);
Configuration\PagesSection.cs (1)
792ConfigUtil.SetFX45DefaultValue(this, _propControlRenderingCompatibilityVersion, VersionUtil.Framework45);
HttpRequest.cs (1)
2654if (requestValidationMode >= VersionUtil.Framework45) {
UI\Control.cs (1)
2804if (runtimeSection.RequestValidationMode >= VersionUtil.Framework45) {
UI\ControlRenderingHelper.cs (1)
16if (renderingCompatibility >= VersionUtil.Framework45) {
UI\HtmlControls\HtmlImage.cs (1)
70if (RenderingCompatibility >= VersionUtil.Framework45) {
UI\HtmlForm.cs (1)
311if (String.IsNullOrEmpty(action) && RenderingCompatibility >= VersionUtil.Framework45) {
UI\WebControls\DetailsView.cs (1)
2808return DataBoundControlHelper.IsBindableType(type, enableEnums: RenderingCompatibility >= VersionUtil.Framework45);
UI\WebControls\DetailsViewRowsGenerator.cs (1)
104if (detailsView.RenderingCompatibility < VersionUtil.Framework45 && AutoGenerateEnumFields == null) {
UI\WebControls\FormView.cs (1)
2437return DataBoundControlHelper.IsBindableType(type, enableEnums: this.RenderingCompatibility >= VersionUtil.Framework45);
UI\WebControls\GridView.cs (1)
942return DataBoundControlHelper.IsBindableType(type, enableEnums: RenderingCompatibility >= VersionUtil.Framework45);
UI\WebControls\GridViewColumnsGenerator.cs (1)
149if (gridView.RenderingCompatibility < VersionUtil.Framework45 && AutoGenerateEnumFields == null) {
UI\WebControls\Image.cs (1)
198if (RenderingCompatibility >= VersionUtil.Framework45) {
UI\WebControls\MenuRendererStandards.cs (1)
523if (Menu.RenderingCompatibility >= VersionUtil.Framework45) {
UI\WebControls\TextBox.cs (2)
450(RenderingCompatibility >= VersionUtil.Framework45 || mode >= TextBoxMode.Color || (SupportsVCard && mode == TextBoxMode.SingleLine))) { 710if (RenderingCompatibility >= VersionUtil.Framework45) {
Util\BinaryCompatibility.cs (1)
36TargetsAtLeastFramework45 = (version >= VersionUtil.Framework45);
Util\SynchronizationContextUtil.cs (2)
25if (HttpRuntime.TargetFramework < VersionUtil.Framework45 && requiredMode == SynchronizationContextMode.Normal) { 29else if (HttpRuntime.TargetFramework >= VersionUtil.Framework45 && requiredMode == SynchronizationContextMode.Legacy) {