Show / Hide Table of Contents

    Class User

    An interface which describes the authenticated User for a request.

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

    Properties

    | Improve this Doc View Source

    Email

    The email address of the user.

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

    The user's email address.

    | Improve this Doc View Source

    Id

    The unique ID of the user.

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

    The unique identifier.

    | Improve this Doc View Source

    IpAddress

    The IP of the user.

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

    The user's IP address.

    | Improve this Doc View Source

    Other

    Additional information about the user

    Declaration
    public IDictionary<string, string> Other { get; set; }
    Property Value
    Type Description
    IDictionary<String, String>
    | Improve this Doc View Source

    Username

    The username of the user

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

    The user's username.

    Methods

    | Improve this Doc View Source

    Clone()

    Declaration
    public User Clone()
    Returns
    Type Description
    User
    • Improve this Doc
    • View Source
    Back to top Generated by DocFX