Show / Hide Table of Contents

    Class SentryStackTrace

    Sentry Stacktrace interface

    Inheritance
    Object
    SentryStackTrace
    Inherited Members
    Object.Equals(Object)
    Object.Equals(Object, Object)
    Object.GetHashCode()
    Object.GetType()
    Object.MemberwiseClone()
    Object.ReferenceEquals(Object, Object)
    Object.ToString()
    Namespace: Sentry.Protocol
    Assembly: Sentry.Protocol.dll
    Syntax
    [DataContract]
    public class SentryStackTrace
    Remarks

    A stacktrace contains a list of frames, each with various bits (most optional) describing the context of that frame. Frames should be sorted from oldest to newest.

    Properties

    | Improve this Doc View Source

    Frames

    The list of frames in the stack

    Declaration
    public IList<SentryStackFrame> Frames { get; set; }
    Property Value
    Type Description
    IList<SentryStackFrame>
    Remarks

    The list of frames should be ordered by the oldest call first.

    • Improve this Doc
    • View Source
    Back to top Generated by DocFX