Ejemplo n.º 1
0
        /// <summary>
        ///     Returns the CCW data associated with the given address.  This is used when looking at stowed
        ///     exceptions in CLR.
        /// </summary>
        /// <param name="addr">The address of the CCW obtained from stowed exception data.</param>
        /// <returns>The CcwData describing the given CCW, or null.</returns>
        /// <inheritdoc />
        public ICcwData GetCcwDataByAddress(ulong addr)
        {
            var ccwDataByAddress = Runtime.GetCcwDataByAddress(addr);

            return(Converter.Convert(ccwDataByAddress));
        }