System.TermInfo.Database.ReadActiveDatabase C# (CSharp) Méthode

ReadActiveDatabase() static private méthode

Read the database for the current terminal as specified by the "TERM" environment variable.
static private ReadActiveDatabase ( ) : Database
Résultat Database
            internal static Database ReadActiveDatabase()
            {
                string term = Environment.GetEnvironmentVariable("TERM");
                return !string.IsNullOrEmpty(term) ? ReadDatabase(term) : null;
            }