6 references to ParseNumberOptions
System.Private.CoreLib (6)
src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Utf8Parser\Utf8Parser.Decimal.cs (2)
30
ParseNumberOptions
options;
38
options =
ParseNumberOptions
.AllowExponent;
src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Utf8Parser\Utf8Parser.Float.cs (2)
81
ParseNumberOptions
options;
89
options =
ParseNumberOptions
.AllowExponent;
src\libraries\System.Private.CoreLib\src\System\Buffers\Text\Utf8Parser\Utf8Parser.Number.cs (2)
16
private static bool TryParseNumber(ReadOnlySpan<byte> source, ref Number.NumberBuffer number, out int bytesConsumed,
ParseNumberOptions
options, out bool textUsedExponentNotation)
220
if ((options &
ParseNumberOptions
.AllowExponent) == 0)