Inheritance: TpmStructureBase
Exemplo n.º 1
0
 public void NvWriteLock(
     TpmHandle authHandle,
     TpmHandle nvIndex
 )
 {
     Tpm2NvWriteLockRequest inS = new Tpm2NvWriteLockRequest();
     inS.authHandle = authHandle;
     inS.nvIndex = nvIndex;
     TpmStructureBase outSBase;
     DispatchMethod(TpmCc.NvWriteLock, (TpmStructureBase) inS, typeof(Tpm2NvWriteLockResponse), out outSBase, 2, 0);
 }
Exemplo n.º 2
0
 public Tpm2NvWriteLockRequest(Tpm2NvWriteLockRequest the_Tpm2NvWriteLockRequest)
 {
     if((Object) the_Tpm2NvWriteLockRequest == null ) throw new ArgumentException(Globs.GetResourceString("parmError"));
     authHandle = the_Tpm2NvWriteLockRequest.authHandle;
     nvIndex = the_Tpm2NvWriteLockRequest.nvIndex;
 }