Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2015-01-14 00:34:23 +0300
committerZoltan Varga <vargaz@gmail.com>2015-01-14 00:34:23 +0300
commitc1b43669320f96e4a2a482d993b7b36bb5e59496 (patch)
treef618f341e716106fbffc86504696e8a02395e4a8 /mcs/class/System.IdentityModel
parent2375c74a646b46877c5441f06f231529e5206425 (diff)
[bcl] Remove NET_4_5 defines from class libs.
Diffstat (limited to 'mcs/class/System.IdentityModel')
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Configuration/ICustomIdentityConfiguration.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Configuration/IdentityModelCaches.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/BinaryExchange.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/EndpointReference.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Entropy.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Lifetime.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/ProtectedKey.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestSecurityTokenResponse.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestedProofToken.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestedSecurityToken.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Status.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/UseKey.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/WSTrustMessage.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AudienceRestriction.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AuthenticationContext.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AuthenticationInformation.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/BootstrapContext.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/EncryptingCredentials.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/IssuerNameRegistry.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/ProofDescriptor.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenDescriptor.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenExpiredException.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandler.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandlerCollection.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandlerConfiguration.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenNotYetValidException.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenReplayDetectedException.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityToken.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenCache.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenCacheKey.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenHandler.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/TokenReplayCache.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel.Tokens/X509SigningCredentials.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel/CookieTransform.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel/OpenObject.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.IdentityModel/SignatureVerificationFailedException.cs2
-rw-r--r--mcs/class/System.IdentityModel/System.ServiceModel.Security/X509CertificateValidationMode.cs2
37 files changed, 0 insertions, 74 deletions
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Configuration/ICustomIdentityConfiguration.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Configuration/ICustomIdentityConfiguration.cs
index 5d999cb9520..ff9734656ef 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Configuration/ICustomIdentityConfiguration.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Configuration/ICustomIdentityConfiguration.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System.Xml;
@@ -36,4 +35,3 @@ namespace System.IdentityModel.Configuration
void LoadCustomConfiguration(XmlNodeList nodeList);
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Configuration/IdentityModelCaches.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Configuration/IdentityModelCaches.cs
index 14a1c7f33bf..42e0fb07d59 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Configuration/IdentityModelCaches.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Configuration/IdentityModelCaches.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System.IdentityModel.Tokens;
@@ -37,4 +36,3 @@ namespace System.IdentityModel.Configuration
public TokenReplayCache TokenReplayCache { get; set; }
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/BinaryExchange.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/BinaryExchange.cs
index e7efc435221..c61eda717fc 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/BinaryExchange.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/BinaryExchange.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
@@ -50,4 +49,3 @@ namespace System.IdentityModel.Protocols.WSTrust
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/EndpointReference.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/EndpointReference.cs
index 81756083214..36507efca33 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/EndpointReference.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/EndpointReference.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Collections.ObjectModel;
@@ -61,4 +60,3 @@ namespace System.IdentityModel.Protocols.WSTrust
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Entropy.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Entropy.cs
index 57647c680d5..2e81813ea99 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Entropy.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Entropy.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System.IdentityModel.Tokens;
using System.Security.Cryptography;
@@ -57,4 +56,3 @@ namespace System.IdentityModel.Protocols.WSTrust
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Lifetime.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Lifetime.cs
index f573f9173ce..539de33e9a6 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Lifetime.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Lifetime.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
@@ -46,4 +45,3 @@ namespace System.IdentityModel.Protocols.WSTrust
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/ProtectedKey.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/ProtectedKey.cs
index df81a3822a2..f7cc20a968c 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/ProtectedKey.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/ProtectedKey.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.IdentityModel.Tokens;
@@ -52,4 +51,3 @@ namespace System.IdentityModel.Protocols.WSTrust
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestSecurityTokenResponse.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestSecurityTokenResponse.cs
index 6efd2d918be..f31045f7bcf 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestSecurityTokenResponse.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestSecurityTokenResponse.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System.IdentityModel.Tokens;
@@ -52,4 +51,3 @@ namespace System.IdentityModel.Protocols.WSTrust
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestedProofToken.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestedProofToken.cs
index 9d976d07f01..fd73040f64c 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestedProofToken.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestedProofToken.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.IdentityModel.Tokens;
@@ -54,4 +53,3 @@ namespace System.IdentityModel.Protocols.WSTrust
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestedSecurityToken.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestedSecurityToken.cs
index 04d2f31c4ca..9b01ad86fd1 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestedSecurityToken.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/RequestedSecurityToken.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.IdentityModel.Tokens;
@@ -47,4 +46,3 @@ namespace System.IdentityModel.Protocols.WSTrust
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Status.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Status.cs
index 7d6d83649de..5646993e1c7 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Status.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/Status.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
@@ -42,4 +41,3 @@ namespace System.IdentityModel.Protocols.WSTrust
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/UseKey.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/UseKey.cs
index b30caef7ef8..8f6a57c15c8 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/UseKey.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/UseKey.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.IdentityModel.Tokens;
@@ -54,4 +53,3 @@ namespace System.IdentityModel.Protocols.WSTrust
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/WSTrustMessage.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/WSTrustMessage.cs
index e339b7208b3..ddb110a1d2a 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/WSTrustMessage.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Protocols/WSTrust/WSTrustMessage.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.IdentityModel;
@@ -55,4 +54,3 @@ namespace System.IdentityModel.Protocols.WSTrust
public UseKey UseKey { get; set; }
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AudienceRestriction.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AudienceRestriction.cs
index 610231822de..73317ea6016 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AudienceRestriction.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AudienceRestriction.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System.Collections.ObjectModel;
using System.IdentityModel.Selectors;
@@ -48,4 +47,3 @@ namespace System.IdentityModel.Tokens
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AuthenticationContext.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AuthenticationContext.cs
index a89e150b464..9e70be106af 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AuthenticationContext.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AuthenticationContext.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Collections.ObjectModel;
@@ -43,4 +42,3 @@ namespace System.IdentityModel.Tokens
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AuthenticationInformation.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AuthenticationInformation.cs
index 13879c5342f..14b3c2b596d 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AuthenticationInformation.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/AuthenticationInformation.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Collections.ObjectModel;
@@ -44,4 +43,3 @@ namespace System.Security.Claims
public String Session { get; set; }
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/BootstrapContext.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/BootstrapContext.cs
index 5e9f589c294..d835a6acc8e 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/BootstrapContext.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/BootstrapContext.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.IO;
using System.Runtime.Serialization;
@@ -114,4 +113,3 @@ namespace System.IdentityModel.Tokens {
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/EncryptingCredentials.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/EncryptingCredentials.cs
index c73dc8273ee..833adb15468 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/EncryptingCredentials.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/EncryptingCredentials.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
@@ -47,4 +46,3 @@ namespace System.IdentityModel.Tokens
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/IssuerNameRegistry.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/IssuerNameRegistry.cs
index cdfded6ea27..d6992445508 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/IssuerNameRegistry.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/IssuerNameRegistry.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System.IdentityModel.Configuration;
using System.Xml;
@@ -52,4 +51,3 @@ namespace System.IdentityModel.Tokens
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/ProofDescriptor.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/ProofDescriptor.cs
index 8afc60133fd..f0edaf09fe8 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/ProofDescriptor.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/ProofDescriptor.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System.IdentityModel.Protocols.WSTrust;
@@ -38,4 +37,3 @@ namespace System.IdentityModel.Tokens
public abstract void ApplyTo (RequestSecurityTokenResponse response);
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenDescriptor.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenDescriptor.cs
index 7e0930817fe..1b03da61861 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenDescriptor.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenDescriptor.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Collections.Generic;
@@ -71,4 +70,3 @@ namespace System.IdentityModel.Tokens
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenExpiredException.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenExpiredException.cs
index 2f10c949029..c5301cd6f8e 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenExpiredException.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenExpiredException.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Runtime.Serialization;
@@ -51,4 +50,3 @@ namespace System.IdentityModel.Tokens
{ }
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandler.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandler.cs
index 7b6de3f6fcd..14bc4bfcb2e 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandler.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandler.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Collections.ObjectModel;
@@ -120,4 +119,3 @@ namespace System.IdentityModel.Tokens
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandlerCollection.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandlerCollection.cs
index 1b0be5519a5..71ec5da12ce 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandlerCollection.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandlerCollection.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Collections.Generic;
@@ -194,4 +193,3 @@ namespace System.IdentityModel.Tokens
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandlerConfiguration.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandlerConfiguration.cs
index 89f37c8c6e0..4d4589c427a 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandlerConfiguration.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenHandlerConfiguration.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.IdentityModel.Configuration;
@@ -63,4 +62,3 @@ namespace System.IdentityModel.Tokens
public StoreLocation TrustedStoreLocation { get; set; }
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenNotYetValidException.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenNotYetValidException.cs
index 9f15b7b6448..4f9e5f18f6c 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenNotYetValidException.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenNotYetValidException.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Runtime.Serialization;
@@ -51,4 +50,3 @@ namespace System.IdentityModel.Tokens
{ }
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenReplayDetectedException.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenReplayDetectedException.cs
index eb4a786b336..e04d0cbd28e 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenReplayDetectedException.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SecurityTokenReplayDetectedException.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Runtime.Serialization;
@@ -51,4 +50,3 @@ namespace System.IdentityModel.Tokens
{ }
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityToken.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityToken.cs
index 5597b8de2af..175dfadbef2 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityToken.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityToken.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Collections.ObjectModel;
@@ -106,4 +105,3 @@ namespace System.IdentityModel.Tokens
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenCache.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenCache.cs
index aecc0c8057f..06f65d5af03 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenCache.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenCache.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Collections.Generic;
@@ -48,4 +47,3 @@ namespace System.IdentityModel.Tokens
public abstract void RemoveAll (string endpointId, UniqueId contextId);
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenCacheKey.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenCacheKey.cs
index 27b6d8f4234..410a1143b02 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenCacheKey.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenCacheKey.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Xml;
@@ -71,4 +70,3 @@ namespace System.IdentityModel.Tokens
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenHandler.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenHandler.cs
index d6f72359b4e..e4f62268339 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenHandler.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/SessionSecurityTokenHandler.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Collections.Generic;
@@ -145,4 +144,3 @@ namespace System.IdentityModel.Tokens
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/TokenReplayCache.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/TokenReplayCache.cs
index 468fd633f90..0e5fd79bfea 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/TokenReplayCache.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/TokenReplayCache.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.IdentityModel.Configuration;
@@ -49,4 +48,3 @@ namespace System.IdentityModel.Tokens
public abstract void Remove (string key);
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/X509SigningCredentials.cs b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/X509SigningCredentials.cs
index e191f40770e..8347a553784 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/X509SigningCredentials.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel.Tokens/X509SigningCredentials.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Security.Cryptography.X509Certificates;
@@ -59,4 +58,3 @@ namespace System.IdentityModel.Tokens
}
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel/CookieTransform.cs b/mcs/class/System.IdentityModel/System.IdentityModel/CookieTransform.cs
index f310a84adba..b51d0c4fe9e 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel/CookieTransform.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel/CookieTransform.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
@@ -36,4 +35,3 @@ namespace System.IdentityModel
public abstract byte[] Encode (byte[] value);
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel/OpenObject.cs b/mcs/class/System.IdentityModel/System.IdentityModel/OpenObject.cs
index 9f6b79343a4..6f41eb1b4ec 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel/OpenObject.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel/OpenObject.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Collections.Generic;
@@ -39,4 +38,3 @@ namespace System.IdentityModel
public Dictionary<string, object> Properties { get { return properties; } }
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.IdentityModel/SignatureVerificationFailedException.cs b/mcs/class/System.IdentityModel/System.IdentityModel/SignatureVerificationFailedException.cs
index 2e1e7115ca9..0a1f0ceb480 100644
--- a/mcs/class/System.IdentityModel/System.IdentityModel/SignatureVerificationFailedException.cs
+++ b/mcs/class/System.IdentityModel/System.IdentityModel/SignatureVerificationFailedException.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
using System;
using System.Runtime.Serialization;
@@ -51,4 +50,3 @@ namespace System.IdentityModel
{ }
}
}
-#endif
diff --git a/mcs/class/System.IdentityModel/System.ServiceModel.Security/X509CertificateValidationMode.cs b/mcs/class/System.IdentityModel/System.ServiceModel.Security/X509CertificateValidationMode.cs
index 832e2a43c1e..b66db3bb0d8 100644
--- a/mcs/class/System.IdentityModel/System.ServiceModel.Security/X509CertificateValidationMode.cs
+++ b/mcs/class/System.IdentityModel/System.ServiceModel.Security/X509CertificateValidationMode.cs
@@ -25,7 +25,6 @@
// OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
//
-#if NET_4_5
namespace System.ServiceModel.Security
{
@@ -38,4 +37,3 @@ namespace System.ServiceModel.Security
Custom
}
}
-#endif