2 writes to MinExclusive
System.Xml (2)
System\Xml\Schema\FacetChecker.cs (2)
243derivedRestriction.MinExclusive = ParseFacetValue(builtInType, facet, Res.Sch_MinExclusiveFacetInvalid, null, null); 530derivedRestriction.MinExclusive = baseRestriction.MinExclusive;
12 references to MinExclusive
System.Xml (12)
System\Xml\Schema\FacetChecker.cs (12)
246if (!datatype.IsEqual(datatype.Restriction.MinExclusive, derivedRestriction.MinExclusive)) { 250CheckValue(derivedRestriction.MinExclusive, facet); 348if (datatype.Compare(value, restriction.MinExclusive) < 0) { 361if (datatype.Compare(value, restriction.MinExclusive) < 0) { 438if (datatype.Compare(derivedRestriction.MinExclusive, derivedRestriction.MaxExclusive) > 0) { 446if (datatype.Compare(derivedRestriction.MinExclusive, derivedRestriction.MaxInclusive) > 0) { 530derivedRestriction.MinExclusive = baseRestriction.MinExclusive; 869if (value <= valueConverter.ToDecimal(restriction.MinExclusive)) { 964if (value <= valueConverter.ToDouble(restriction.MinExclusive)) { 1023if (TimeSpan.Compare(value, (TimeSpan)restriction.MinExclusive) <= 0) { 1078if (datatype.Compare(value, (DateTime)restriction.MinExclusive) <= 0) {