Inheritance: TpmStructureBase
Ejemplo n.º 1
0
 public void FlushContext(
     TpmHandle flushHandle
 )
 {
     Tpm2FlushContextRequest inS = new Tpm2FlushContextRequest();
     inS.flushHandle = flushHandle;
     TpmStructureBase outSBase;
     DispatchMethod(TpmCc.FlushContext, (TpmStructureBase) inS, typeof(Tpm2FlushContextResponse), out outSBase, 0, 0);
 }
Ejemplo n.º 2
0
 public Tpm2FlushContextRequest(Tpm2FlushContextRequest the_Tpm2FlushContextRequest)
 {
     if((Object) the_Tpm2FlushContextRequest == null ) throw new ArgumentException(Globs.GetResourceString("parmError"));
     flushHandle = the_Tpm2FlushContextRequest.flushHandle;
 }