Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
SqlTypeException.cs
Go to the documentation of this file.
3
5
7[TypeForwardedFrom("System.Data, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089")]
9{
11 : this(System.SR.SqlMisc_SqlTypeMessage, null)
12 {
13 }
14
15 public SqlTypeException(string? message)
16 : this(message, null)
17 {
18 }
19
20 public SqlTypeException(string? message, Exception? e)
21 : base(message, e)
22 {
23 base.HResult = -2146232016;
24 }
25
30
32 {
33 if (si != null && 1 == si.MemberCount)
34 {
35 string @string = si.GetString("SqlTypeExceptionMessage");
37 ex.GetObjectData(si, sc);
38 }
39 return si;
40 }
41}
SqlTypeException(SerializationInfo si, StreamingContext sc)
static SerializationInfo SqlTypeExceptionSerialization(SerializationInfo si, StreamingContext sc)
SqlTypeException(string? message, Exception? e)
Definition SR.cs:7