6 references to NUMERIC_MAX_PRECISION
System.Xml (6)
System\Xml\BinaryXml\SqlUtils.cs (6)
34private static readonly byte MaxPrecision = NUMERIC_MAX_PRECISION; // max SS precision 35private static readonly byte MaxScale = NUMERIC_MAX_PRECISION; // max SS scale 200if (lAdjust + m_bScale > NUMERIC_MAX_PRECISION) 204bNewPrec = (byte)(Math.Min(NUMERIC_MAX_PRECISION, Math.Max(1, lAdjust + m_bPrec))); 469char[] pszTmp = new char[NUMERIC_MAX_PRECISION + 1]; //Local Character buffer to hold 523Debug.Assert(m_bScale <= NUMERIC_MAX_PRECISION, "m_bScale <= NUMERIC_MAX_PRECISION", "In AssertValid");