Show / Hide Table of Contents

    Class SentryThread

    A thread running at the time of an event

    Inheritance
    Object
    SentryThread
    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 SentryThread

    Properties

    | Improve this Doc View Source

    Crashed

    Whether the crash happened on this thread.

    Declaration
    [DataMember(Name = "crashed", EmitDefaultValue = false)]
    public bool? Crashed { get; set; }
    Property Value
    Type Description
    Nullable<Boolean>
    | Improve this Doc View Source

    Current

    An optional flag to indicate that the thread was in the foreground.

    Declaration
    [DataMember(Name = "current", EmitDefaultValue = false)]
    public bool? Current { get; set; }
    Property Value
    Type Description
    Nullable<Boolean>
    | Improve this Doc View Source

    Id

    The Id of the thread

    Declaration
    [DataMember(Name = "id", EmitDefaultValue = false)]
    public int? Id { get; set; }
    Property Value
    Type Description
    Nullable<Int32>
    | Improve this Doc View Source

    Name

    The name of the thread

    Declaration
    [DataMember(Name = "name", EmitDefaultValue = false)]
    public string Name { get; set; }
    Property Value
    Type Description
    String
    | Improve this Doc View Source

    Stacktrace

    Stack trace

    Declaration
    [DataMember(Name = "stacktrace", EmitDefaultValue = false)]
    public SentryStackTrace Stacktrace { get; set; }
    Property Value
    Type Description
    SentryStackTrace
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX