Tpm2Lib.Tpm2.PolicyNV C# (CSharp) Method

PolicyNV() private method

private PolicyNV ( TpmHandle authHandle, TpmHandle nvIndex, TpmHandle policySession, byte operandB, ushort offset, Eo operation ) : void
authHandle TpmHandle
nvIndex TpmHandle
policySession TpmHandle
operandB byte
offset ushort
operation Eo
return void
        public void PolicyNV(
            TpmHandle authHandle,
            TpmHandle nvIndex,
            TpmHandle policySession,
            byte[] operandB,
            ushort offset,
            Eo operation
        )
        {
            Tpm2PolicyNVRequest inS = new Tpm2PolicyNVRequest();
            inS.authHandle = authHandle;
            inS.nvIndex = nvIndex;
            inS.policySession = policySession;
            inS.operandB = operandB;
            inS.offset = offset;
            inS.operation = operation;
            TpmStructureBase outSBase;
            DispatchMethod(TpmCc.PolicyNV, (TpmStructureBase) inS, typeof(Tpm2PolicyNVResponse), out outSBase, 3, 0);
        }
        /// <summary>
Tpm2