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

◆ CompareMinMaxLength()

static void System.Xml.Schema.XdrBuilder.CompareMinMaxLength ( uint cMin,
uint cMax,
XdrBuilder builder )
inlinestaticprivate

Definition at line 1415 of file XdrBuilder.cs.

1416 {
1417 if (cMin != uint.MaxValue && cMax != uint.MaxValue && cMin > cMax)
1418 {
1419 builder.SendValidationEvent(System.SR.Sch_DtMinMaxLength);
1420 }
1421 }
static string Sch_DtMinMaxLength
Definition SR.cs:478
Definition SR.cs:7

References System.SR.Sch_DtMinMaxLength.

Referenced by System.Xml.Schema.XdrBuilder.XDR_EndAttributeType(), and System.Xml.Schema.XdrBuilder.XDR_EndElementType().