2 writes to MinInclusive
System.Xml (2)
System\Xml\Schema\FacetChecker.cs (2)
229derivedRestriction.MinInclusive = ParseFacetValue(builtInType, facet, Res.Sch_MinInclusiveFacetInvalid, null, null); 523derivedRestriction.MinInclusive = baseRestriction.MinInclusive;
12 references to MinInclusive
System.Xml (12)
System\Xml\Schema\FacetChecker.cs (12)
232if (!datatype.IsEqual(datatype.Restriction.MinInclusive, derivedRestriction.MinInclusive)) { 236CheckValue(derivedRestriction.MinInclusive, facet); 343if (datatype.Compare(value, restriction.MinInclusive) < 0) { 366if (datatype.Compare(value, restriction.MinInclusive) < 0) { 422if (datatype.Compare(derivedRestriction.MinInclusive, derivedRestriction.MaxInclusive) > 0) { 430if (datatype.Compare(derivedRestriction.MinInclusive, derivedRestriction.MaxExclusive) > 0) { 523derivedRestriction.MinInclusive = baseRestriction.MinInclusive; 863if (value < valueConverter.ToDecimal(restriction.MinInclusive)) { 958if (value < (valueConverter.ToDouble(restriction.MinInclusive))) { 1017if (TimeSpan.Compare(value, (TimeSpan)restriction.MinInclusive) < 0) { 1072if (datatype.Compare(value, (DateTime)restriction.MinInclusive) < 0) {