Inheritance: TpmStructureBase
Example #1
0
 public void ClearControl(
     TpmHandle auth,
     byte disable
 )
 {
     Tpm2ClearControlRequest inS = new Tpm2ClearControlRequest();
     inS.auth = auth;
     inS.disable = disable;
     TpmStructureBase outSBase;
     DispatchMethod(TpmCc.ClearControl, (TpmStructureBase) inS, typeof(Tpm2ClearControlResponse), out outSBase, 1, 0);
 }
Example #2
0
 public Tpm2ClearControlRequest(Tpm2ClearControlRequest the_Tpm2ClearControlRequest)
 {
     if((Object) the_Tpm2ClearControlRequest == null ) throw new ArgumentException(Globs.GetResourceString("parmError"));
     auth = the_Tpm2ClearControlRequest.auth;
     disable = the_Tpm2ClearControlRequest.disable;
 }