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);
350
var result = new
GuidResult
(GuidParseThrowStyle.AllButOverflow);
370
var parseResult = new
GuidResult
(GuidParseThrowStyle.None);
385
var parseResult = new
GuidResult
(GuidParseThrowStyle.None);
416
var result = new
GuidResult
(GuidParseThrowStyle.AllButOverflow);
451
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);
350
var
result = new GuidResult(GuidParseThrowStyle.AllButOverflow);
370
var
parseResult = new GuidResult(GuidParseThrowStyle.None);
385
var
parseResult = new GuidResult(GuidParseThrowStyle.None);
416
var
result = new GuidResult(GuidParseThrowStyle.AllButOverflow);
451
var
parseResult = new GuidResult(GuidParseThrowStyle.None);
473
private static bool TryParseGuid<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
495
private static bool TryParseExactB<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
508
private static bool TryParseExactD<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
518
Span<byte> bytes = MemoryMarshal.AsBytes(new Span<
GuidResult
>(ref result));
563
static bool TryCompatParsing(ReadOnlySpan<TChar> guidString, ref
GuidResult
result)
594
private static bool TryParseExactN<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
604
Span<byte> bytes = MemoryMarshal.AsBytes(new Span<
GuidResult
>(ref result));
637
private static bool TryParseExactP<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
650
private static bool TryParseExactX<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
885
private static ReadOnlySpan<TChar> EatAllWhitespace<TChar>(ReadOnlySpan<TChar> str, scoped ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>