[bcl] Updates referencesource to 4.7.1
[mono-project.git] / mcs / class / referencesource / System.ServiceModel / System / ServiceModel / AppContextDefaultValues.Default.cs
blob43a4388b32a8552560f039ecc70774acaf8dffd2
1 // <copyright>
2 // Copyright (c) Microsoft Corporation. All rights reserved.
3 // </copyright>
4 namespace System
6 using System;
7 using System.ServiceModel;
9 internal static partial class AppContextDefaultValues
11 static partial void PopulateDefaultValuesPartial(string platformIdentifier, string profile, int version)
13 // When defining a new switch you should add it to the last known version.
14 // For instance, if you are adding a switch in .NET 4.6 (the release after 4.5.2) you should defined your switch
15 // like this:
16 // if (version <= 40502) ...
17 // This ensures that all previous versions of that platform (up-to 4.5.2) will get the old behavior by default
18 // NOTE: When adding a default value for a switch please make sure that the default value is added to ALL of the existing platforms!
19 // NOTE: When adding a new if statement for the version please ensure that ALL previous switches are enabled (ie. don't use else if)
20 switch (platformIdentifier)
22 case ".NETCore":
23 case ".NETFramework":
25 if (version <= 40502)
27 LocalAppContextSwitches.SetDefaultsLessOrEqual_452();
30 if (version <= 40601)
32 LocalAppContextSwitches.SetDefaultsLessOrEqual_461();
35 if (version <= 40602)
37 // Define the switches that should be true for 4.6.2 or less, false for 4.6.3+.
38 LocalAppContext.DefineSwitchDefault(LocalAppContextSwitches.DisableUsingServicePointManagerSecurityProtocolsString, true);
41 if (version <= 40700)
43 // Define the switches that should be true for 4.7.0 or less, false for 4.7.1+.
44 LocalAppContext.DefineSwitchDefault(LocalAppContextSwitches.UseSha1InPipeConnectionGetHashAlgorithmString, true);
45 LocalAppContext.DefineSwitchDefault(LocalAppContextSwitches.DisableAddressHeaderCollectionValidationString, true);
46 LocalAppContext.DefineSwitchDefault(LocalAppContextSwitches.UseSha1InMsmqEncryptionAlgorithmString, true);
47 LocalAppContext.DefineSwitchDefault(LocalAppContextSwitches.DontEnableSystemDefaultTlsVersionsString, true);
50 break;