9 references to GuidParseThrowStyle
System.Private.CoreLib (9)
src\libraries\System.Private.CoreLib\src\System\Guid.cs (9)
209private readonly GuidParseThrowStyle _throwStyle; 211internal GuidResult(GuidParseThrowStyle canThrow) : this() 218if (_throwStyle == GuidParseThrowStyle.None) 223if (failureKind == ParseFailure.Overflow_UInt32 && _throwStyle == GuidParseThrowStyle.All) 268var result = new GuidResult(GuidParseThrowStyle.All); 339var result = new GuidResult(GuidParseThrowStyle.AllButOverflow); 359var parseResult = new GuidResult(GuidParseThrowStyle.None); 390var result = new GuidResult(GuidParseThrowStyle.AllButOverflow); 425var parseResult = new GuidResult(GuidParseThrowStyle.None);