2 writes to FractionDigits
System.Xml (2)
System\Xml\Schema\FacetChecker.cs (2)
276derivedRestriction.FractionDigits = XmlBaseConverter.DecimalToInt32((decimal)ParseFacetValue(nonNegativeInt, facet, Res.Sch_FractionDigitsFacetInvalid, null, null)); 544derivedRestriction.FractionDigits = baseRestriction.FractionDigits;
6 references to FractionDigits
System.Xml (6)
System\Xml\Schema\FacetChecker.cs (6)
278if ((derivedRestriction.FractionDigits != 0) && (datatype.TypeCode != XmlTypeCode.Decimal)) { 282if (derivedRestriction.FractionDigits > datatype.Restriction.FractionDigits) { 451if (derivedRestriction.FractionDigits > derivedRestriction.TotalDigits) { 544derivedRestriction.FractionDigits = baseRestriction.FractionDigits; 878return CheckTotalAndFractionDigits(value, restriction.TotalDigits, restriction.FractionDigits, ((flags & RestrictionFlags.TotalDigits) != 0), ((flags & RestrictionFlags.FractionDigits) != 0));