7 instantiations of GuidResult
System.Private.CoreLib (7)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Guid.cs (7)
271
var result = new
GuidResult
(GuidParseThrowStyle.All);
342
var result = new
GuidResult
(GuidParseThrowStyle.AllButOverflow);
356
var result = new
GuidResult
(GuidParseThrowStyle.AllButOverflow);
376
var parseResult = new
GuidResult
(GuidParseThrowStyle.None);
397
var parseResult = new
GuidResult
(GuidParseThrowStyle.None);
428
var result = new
GuidResult
(GuidParseThrowStyle.AllButOverflow);
463
var parseResult = new
GuidResult
(GuidParseThrowStyle.None);
18 references to GuidResult
System.Private.CoreLib (18)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Guid.cs (18)
249
return Unsafe.As<
GuidResult
, Guid>(ref Unsafe.AsRef(in this));
271
var
result = new GuidResult(GuidParseThrowStyle.All);
342
var
result = new GuidResult(GuidParseThrowStyle.AllButOverflow);
356
var
result = new GuidResult(GuidParseThrowStyle.AllButOverflow);
376
var
parseResult = new GuidResult(GuidParseThrowStyle.None);
397
var
parseResult = new GuidResult(GuidParseThrowStyle.None);
428
var
result = new GuidResult(GuidParseThrowStyle.AllButOverflow);
463
var
parseResult = new GuidResult(GuidParseThrowStyle.None);
485
private static bool TryParseGuid<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
507
private static bool TryParseExactB<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
520
private static bool TryParseExactD<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
530
Span<byte> bytes = MemoryMarshal.AsBytes(new Span<
GuidResult
>(ref result));
575
static bool TryCompatParsing(ReadOnlySpan<TChar> guidString, ref
GuidResult
result)
608
private static bool TryParseExactN<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
618
Span<byte> bytes = MemoryMarshal.AsBytes(new Span<
GuidResult
>(ref result));
651
private static bool TryParseExactP<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
664
private static bool TryParseExactX<TChar>(ReadOnlySpan<TChar> guidString, ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>
898
private static ReadOnlySpan<TChar> EatAllWhitespace<TChar>(ReadOnlySpan<TChar> str, scoped ref
GuidResult
result) where TChar : unmanaged, IUtfChar<TChar>