Inheritance: TpmStructureBase, ICapabilitiesUnion
示例#1
0
 public PcrSelectionArray(PcrSelectionArray the_PcrSelectionArray)
 {
     if((Object) the_PcrSelectionArray == null ) throw new ArgumentException(Globs.GetResourceString("parmError"));
     pcrSelections = the_PcrSelectionArray.pcrSelections;
 }
示例#2
0
 /// <summary>
 /// Returns a TPML_PCR_SELECTION (PcrSelectionArray) suitable for marshalling
 /// </summary>
 /// <returns></returns>
 public PcrSelectionArray GetTpmlPcrSelection()
 {
     var sel = new PcrSelectionArray(GetPcrSelectionArray());
     return sel;
 }