コード例 #1
0
        public string GetReport()
        {
            StringBuilder r = new StringBuilder();

            r.AppendLine("Mainboard");
            r.AppendLine();
            r.Append(smbios.GetReport());



            byte[] table =
                FirmwareTable.GetTable(FirmwareTable.Provider.ACPI, "TAMG");
            if (table != null)
            {
                GigabyteTAMG tamg = new GigabyteTAMG(table);
                r.Append(tamg.GetReport());
            }

            return(r.ToString());
        }
コード例 #2
0
ファイル: Mainboard.cs プロジェクト: reimashi/jotai
        public string GetReport()
        {
            StringBuilder r = new StringBuilder();

            r.AppendLine("Mainboard");
            r.AppendLine();
            r.Append(smbios.GetReport());

            if (lpcio != null)
                r.Append(lpcio.GetReport());

            byte[] table =
              FirmwareTable.GetTable(FirmwareTable.Provider.ACPI, "TAMG");
            if (table != null)
            {
                GigabyteTAMG tamg = new GigabyteTAMG(table);
                r.Append(tamg.GetReport());
            }

            return r.ToString();
        }