Tpm2Lib.Tpm2.NvSetBits C# (CSharp) Method

NvSetBits() private method

private NvSetBits ( TpmHandle authHandle, TpmHandle nvIndex, ulong bits ) : void
authHandle TpmHandle
nvIndex TpmHandle
bits ulong
return void
        public void NvSetBits(
            TpmHandle authHandle,
            TpmHandle nvIndex,
            ulong bits
        )
        {
            Tpm2NvSetBitsRequest inS = new Tpm2NvSetBitsRequest();
            inS.authHandle = authHandle;
            inS.nvIndex = nvIndex;
            inS.bits = bits;
            TpmStructureBase outSBase;
            DispatchMethod(TpmCc.NvSetBits, (TpmStructureBase) inS, typeof(Tpm2NvSetBitsResponse), out outSBase, 2, 0);
        }
        /// <summary>
Tpm2