11 references to GuidParseThrowStyle
System.Private.CoreLib (11)
src\libraries\System.Private.CoreLib\src\System\Guid.cs (11)
211private readonly GuidParseThrowStyle _throwStyle; 213internal GuidResult(GuidParseThrowStyle canThrow) : this() 220if (_throwStyle == GuidParseThrowStyle.None) 225if (failureKind == ParseFailure.Overflow_UInt32 && _throwStyle == GuidParseThrowStyle.All) 270var result = new GuidResult(GuidParseThrowStyle.All); 341var result = new GuidResult(GuidParseThrowStyle.AllButOverflow); 350var result = new GuidResult(GuidParseThrowStyle.AllButOverflow); 370var parseResult = new GuidResult(GuidParseThrowStyle.None); 385var parseResult = new GuidResult(GuidParseThrowStyle.None); 416var result = new GuidResult(GuidParseThrowStyle.AllButOverflow); 451var parseResult = new GuidResult(GuidParseThrowStyle.None);