コード例 #1
0
 /// <inheritdoc/>
 /// <summary>
 /// Initializes a new instance of the <see cref="SmbiosType000"/> class by specifying the structure information and the <see cref="SMBIOS"/> version.
 /// </summary>
 /// <param name="smbiosStructureHeaderInfo">Raw information of the current structure.</param>
 /// <param name="smbiosVersion">Current <see cref="SMBIOS"/> version.</param>
 public SmbiosType000(SmbiosStructureHeaderInfo smbiosStructureHeaderInfo, int smbiosVersion) : base(smbiosStructureHeaderInfo, smbiosVersion)
 {
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the class <see cref="SmbiosBaseType"/> by specifying the Header of the structure and current SMBIOS.
 /// </summary>
 /// <param name="smbiosStructureHeaderInfo">Header of the current structure.</param>
 /// <param name="smbiosVersion">Current SMBIOS version.</param>
 protected SmbiosBaseType(SmbiosStructureHeaderInfo smbiosStructureHeaderInfo, int smbiosVersion)
 {
     SmbiosVersion = smbiosVersion;
     StructureInfo = smbiosStructureHeaderInfo;
 }