Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
MissingFieldException.cs
Go to the documentation of this file.
3
4namespace System;
5
7[TypeForwardedFrom("mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
10 public override string Message
11 {
12 get
13 {
14 if (ClassName == null)
15 {
16 return base.Message;
17 }
19 }
20 }
21
23 : base(SR.Arg_MissingFieldException)
24 {
25 base.HResult = -2146233071;
26 }
27
28 public MissingFieldException(string? message)
29 : base(message)
30 {
31 base.HResult = -2146233071;
32 }
33
34 public MissingFieldException(string? message, Exception? inner)
35 : base(message, inner)
36 {
37 base.HResult = -2146233071;
38 }
39
40 public MissingFieldException(string? className, string? fieldName)
41 {
44 }
45
47 : base(info, context)
48 {
49 }
50}
MissingFieldException(string? className, string? fieldName)
MissingFieldException(string? message, Exception? inner)
MissingFieldException(SerializationInfo info, StreamingContext context)
static string FormatSignature(byte[] signature)
static string MissingField_Name
Definition SR.cs:1620
static string Format(string resourceFormat, object p1)
Definition SR.cs:118
Definition SR.cs:7