7 instantiations of GuidResult
System.Private.CoreLib (7)
src\libraries\System.Private.CoreLib\src\System\Guid.cs (7)
270
var result = new
GuidResult
(GuidParseThrowStyle.All);
341
var result = new
GuidResult
(GuidParseThrowStyle.AllButOverflow);
355
var result = new
GuidResult
(GuidParseThrowStyle.AllButOverflow);
375
var parseResult = new
GuidResult
(GuidParseThrowStyle.None);
396
var parseResult = new
GuidResult
(GuidParseThrowStyle.None);
427
var result = new
GuidResult
(GuidParseThrowStyle.AllButOverflow);
462
var parseResult = new
GuidResult
(GuidParseThrowStyle.None);
18 references to GuidResult
System.Private.CoreLib (18)
src\libraries\System.Private.CoreLib\src\System\Guid.cs (18)
248
return Unsafe.As<
GuidResult
, Guid>(ref Unsafe.AsRef(in this));
270
var
result = new GuidResult(GuidParseThrowStyle.All);
341
var
result = new GuidResult(GuidParseThrowStyle.AllButOverflow);
355
var
result = new GuidResult(GuidParseThrowStyle.AllButOverflow);
375
var
parseResult = new GuidResult(GuidParseThrowStyle.None);
396
var
parseResult = new GuidResult(GuidParseThrowStyle.None);
427
var
result = new GuidResult(GuidParseThrowStyle.AllButOverflow);
462
var
parseResult = new GuidResult(GuidParseThrowStyle.None);
484
private static bool TryParseGuid<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
506
private static bool TryParseExactB<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
519
private static bool TryParseExactD<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
529
Span<byte> bytes = MemoryMarshal.AsBytes(new Span<
GuidResult
>(ref result));
574
static bool TryCompatParsing(ReadOnlySpan<TChar> guidString, ref
GuidResult
result)
607
private static bool TryParseExactN<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
617
Span<byte> bytes = MemoryMarshal.AsBytes(new Span<
GuidResult
>(ref result));
650
private static bool TryParseExactP<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
663
private static bool TryParseExactX<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
897
private static ReadOnlySpan<TChar> EatAllWhitespace<TChar>(ReadOnlySpan<TChar> str, scoped ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>