Show / Hide Table of Contents

    Class Browser

    Carries information about the browser or user agent for web-related errors. This can either be the browser this event ocurred in, or the user agent of a web request that triggered the event.

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

    Fields

    | Improve this Doc View Source

    Type

    Tells Sentry which type of context this is.

    Declaration
    [DataMember(Name = "type", EmitDefaultValue = false)]
    public const string Type = "browser"
    Field Value
    Type Description
    String

    Properties

    | Improve this Doc View Source

    Name

    Display name of the browser application.

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

    Version

    Version string of the browser.

    Declaration
    [DataMember(Name = "version", EmitDefaultValue = false)]
    public string Version { get; set; }
    Property Value
    Type Description
    String

    See Also

    https://docs.sentry.io/clientdev/interfaces/contexts/
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX