11 references to GuidParseThrowStyle
System.Private.CoreLib (11)
src\runtime\src\libraries\System.Private.CoreLib\src\System\Guid.cs (11)
212private readonly GuidParseThrowStyle _throwStyle; 214internal GuidResult(GuidParseThrowStyle canThrow) : this() 221if (_throwStyle == GuidParseThrowStyle.None) 226if (failureKind == ParseFailure.Overflow_UInt32 && _throwStyle == GuidParseThrowStyle.All) 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);