Beispiel #1
0
        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());
        }
Beispiel #2
0
    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();
    }