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

◆ IsCatchableOrSecurityExceptionType()

static bool System.Data.Common.ADP.IsCatchableOrSecurityExceptionType ( Exception e)
inlinestaticpackage

Definition at line 800 of file ADP.cs.

801 {
802 Type type = e.GetType();
804 {
805 return type != s_accessViolationType;
806 }
807 return false;
808 }
static readonly Type s_outOfMemoryType
Definition ADP.cs:55
static readonly Type s_nullReferenceType
Definition ADP.cs:59
static readonly Type s_stackOverflowType
Definition ADP.cs:53
static readonly Type s_threadAbortType
Definition ADP.cs:57
static readonly Type s_accessViolationType
Definition ADP.cs:61

References System.Exception.GetType(), System.Data.Common.ADP.s_accessViolationType, System.Data.Common.ADP.s_nullReferenceType, System.Data.Common.ADP.s_outOfMemoryType, System.Data.Common.ADP.s_stackOverflowType, System.Data.Common.ADP.s_threadAbortType, and System.type.

Referenced by System.Data.DataColumnCollection.BaseAdd(), System.Data.ConstraintCollection.Clear(), System.Data.DataColumnCollection.Clear(), System.Data.RecordManager.CopyRecord(), System.Data.DataTable.NewRecordFromArray(), System.Data.ProviderBase.SchemaMapping.SetupSchemaWithKeyInfo(), and System.Data.ProviderBase.SchemaMapping.SetupSchemaWithoutKeyInfo().