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