Skip to content

SessionInfo

Greg Kolinski edited this page Nov 28, 2017 · 4 revisions

Back To Object Classes


 public partial class SessionInfo {
        public string ECGridOSVersion {get;set;}
        public string SessionID {get;set;}
        public int SessionEventID {get;set;}
        public int UserID {get;set;}
        public string LoginName {get;set;}
        public string FirstName {get;set;}
        public string LastName {get;set;}
        public string Company {get;set;}
        public string EMail {get;set;}
        public string Phone {get;set;}
        public float TimeZoneOffset {get;set;}
        public AuthLevel AuthLevel {get;set;}
        public DateTime LastLogin {get;set;}
        public short OpenSessions {get;set;}
        public short TimeOut {get;set;}
        public int NetworkID {get;set;}
        public int MailboxID {get;set;}
        public string ip {get;set;}
    }

Public Properties

  • ECGridOSVersion - String: The version of the current ECGridOS API.
  • SessionID - String: The current session's GUID in string format.
  • SessionEventID - Integer: The session event identifier.
  • UserID - Integer:A numeric value used to represent a specific user on the system.
  • LoginName - String: A user's login name.
  • FirstName - String: A user's first name.
  • LastName - String: A user's last name.
  • Company - String: A company name.
  • EMail - String: A valid Email address.
  • Phone - String: A phone number.
  • TimeZoneOffset - Float: The number of minutes + or - the user local time is from UTC.
  • AuthLevel - Enum AuthLevel: The Authority Level for system access.
  • LastLogin - DateTime: The last date/time this User logged in.
  • OpenSessions - Short: The number of current open session for this User.
  • TimeOut - Short: The maximum number of seconds between calls in a session before it automatically times out.
  • NetworkID - Integer: The NetworkID assigned to Network on ECGrid.
  • MailboxID - Integer: The MailboxID assigned to a Mailbox within a Network on ECGrid.
  • ip - String: The IP address for the current session.

Back To Object Classes

Clone this wiki locally