Inheritance: TpmStructureBase
コード例 #1
0
ファイル: X_TpmDefs.cs プロジェクト: vishalishere/TSS.MSR
 public void PpCommands(
     TpmHandle auth,
     TpmCc[] setList,
     TpmCc[] clearList
 )
 {
     Tpm2PpCommandsRequest inS = new Tpm2PpCommandsRequest();
     inS.auth = auth;
     inS.setList = setList;
     inS.clearList = clearList;
     TpmStructureBase outSBase;
     DispatchMethod(TpmCc.PpCommands, (TpmStructureBase) inS, typeof(Tpm2PpCommandsResponse), out outSBase, 1, 0);
 }
コード例 #2
0
ファイル: X_TpmDefs.cs プロジェクト: vishalishere/TSS.MSR
 public Tpm2PpCommandsRequest(Tpm2PpCommandsRequest the_Tpm2PpCommandsRequest)
 {
     if((Object) the_Tpm2PpCommandsRequest == null ) throw new ArgumentException(Globs.GetResourceString("parmError"));
     auth = the_Tpm2PpCommandsRequest.auth;
     setList = the_Tpm2PpCommandsRequest.setList;
     clearList = the_Tpm2PpCommandsRequest.clearList;
 }