コード例 #1
0
        /// <summary>
        /// Reads the list of linked devices from the PLM's
        /// memory and returns it as a list of records.
        /// </summary>
        public PlmAllLinkDatabase GetAllLinkDatabase()
        {
            var database = new PlmAllLinkDatabase(); // creates empty database

            exceptionHandler(() =>
            {
                database = getAllLinkDatabase();
            });
            return(database);
        }
コード例 #2
0
ファイル: Plm.cs プロジェクト: phantomtypist/FluentDwelling
 /// <summary>
 /// Reads the list of linked devices from the PLM's 
 /// memory and returns it as a list of records.
 /// </summary>
 public PlmAllLinkDatabase GetAllLinkDatabase()
 {
     var database = new PlmAllLinkDatabase(); // creates empty database
     exceptionHandler(() =>
     {
         database = getAllLinkDatabase();
     });
     return database;
 }