Profiles.Framework.Utilities.SessionManagement.SessionManagement C# (CSharp) Method

SessionManagement() static private method

static private SessionManagement ( ) : System
return System
        static SessionManagement()
        {
            using (SqlDataReader reader = new DataIO().GetSQLDataReader("ProfilesDB", "select UserAgent from [User.Session].[Bot]", CommandType.Text, CommandBehavior.CloseConnection, null))
            {
                while (reader.Read())
                {
                    BotUserAgents.Add(reader[0].ToString());
                }
            }
        }