2 implementations of IException
Microsoft.Diagnostics.DataContractReader.Abstractions (1)
Contracts\IException.cs (1)
33public readonly struct Exception : IException
Microsoft.Diagnostics.DataContractReader.Contracts (1)
Contracts\Exception_1.cs (1)
9internal readonly struct Exception_1 : IException
11 references to IException
Microsoft.Diagnostics.DataContractReader.Abstractions (2)
ContractRegistry.cs (2)
19public virtual IException Exception => GetContract<IException>();
Microsoft.Diagnostics.DataContractReader.Contracts (6)
Contracts\Exception_1.cs (3)
21TargetPointer IException.GetNestedExceptionInfo(TargetPointer exceptionInfoAddr, out TargetPointer nextNestedExceptionInfo, out TargetPointer thrownObjectHandle) 34ExceptionData IException.GetExceptionData(TargetPointer exceptionAddr) 48IEnumerable<ExceptionStackFrameInfo> IException.GetExceptionStackFrames(TargetPointer exceptionAddr)
Contracts\StackWalk\StackWalk_1.cs (1)
408IException exceptionContract = _target.Contracts.Exception;
CoreCLRContracts.cs (2)
17registry.Register<IException>("c1", static t => new Exception_1(t)); 121Validate<IException>(registry);
Microsoft.Diagnostics.DataContractReader.Legacy (3)
Dbi\DacDbiImpl.cs (1)
4146IException exceptionContract = _target.Contracts.Exception;
SOSDacImpl.cs (2)
3218Contracts.IException contract = _target.Contracts.Exception; 4986Contracts.IException contract = _target.Contracts.Exception;