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