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