Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
CryptographicException.cs
Go to the documentation of this file.
3
5
7[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
11 : base(SR.Arg_CryptographyException)
12 {
13 }
14
16 : base(SR.Arg_CryptographyException)
17 {
19 }
20
21 public CryptographicException(string? message)
22 : base(message)
23 {
24 }
25
26 public CryptographicException(string? message, Exception? inner)
27 : base(message, inner)
28 {
29 }
30
31 public CryptographicException(string format, string? insert)
33 {
34 }
35
37 : base(info, context)
38 {
39 }
40}
Definition SR.cs:7
CryptographicException(SerializationInfo info, StreamingContext context)
CryptographicException(string? message, Exception? inner)