Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ SchemaName

string System.Data.Constraint.SchemaName
getsetpackageinherited

Definition at line 60 of file Constraint.cs.

61 {
62 get
63 {
64 if (!string.IsNullOrEmpty(_schemaName))
65 {
66 return _schemaName;
67 }
68 return ConstraintName;
69 }
70 set
71 {
72 if (!string.IsNullOrEmpty(value))
73 {
75 }
76 }
77 }
virtual string ConstraintName
Definition Constraint.cs:24