[wasm] Add one more wasm_invoke entry.
[mono.git] / mcs / class / System.IdentityModel / System.IdentityModel.Tokens / SecurityTokenReplayDetectedException.cs
index eb4a786b336f608133cd2cb2b2e21bd5044bd28b..b0113defd8bbe701968794c4622d2e46cc4bbcf8 100644 (file)
@@ -1,4 +1,4 @@
-//
+//
 // SecurityTokenReplayDetectedException.cs
 //
 // Author:
@@ -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;
@@ -42,8 +41,8 @@ namespace System.IdentityModel.Tokens
                        : base(message)
                { }
 
-               public SecurityTokenReplayDetectedException(string message, Exception innerException)
-                       : base(message, innerException)
+               public SecurityTokenReplayDetectedException(string message, Exception inner)
+                       : base(message, inner)
                { }
 
                public SecurityTokenReplayDetectedException(SerializationInfo info, StreamingContext context)
@@ -51,4 +50,3 @@ namespace System.IdentityModel.Tokens
                { }
        }
 }
-#endif