Tpm2Lib.Tpm2.ChangeEPS C# (CSharp) Method

ChangeEPS() private method

private ChangeEPS ( TpmHandle authHandle ) : void
authHandle TpmHandle
return void
        public void ChangeEPS(
            TpmHandle authHandle
        )
        {
            Tpm2ChangeEPSRequest inS = new Tpm2ChangeEPSRequest();
            inS.authHandle = authHandle;
            TpmStructureBase outSBase;
            DispatchMethod(TpmCc.ChangeEPS, (TpmStructureBase) inS, typeof(Tpm2ChangeEPSResponse), out outSBase, 1, 0);
        }
        /// <summary>
Tpm2