Tpm2Lib.Tpm2.PpCommands C# (CSharp) 메소드

PpCommands() 개인적인 메소드

private PpCommands ( TpmHandle auth, TpmCc setList, TpmCc clearList ) : void
auth TpmHandle
setList TpmCc
clearList TpmCc
리턴 void
        public void PpCommands(
            TpmHandle auth,
            TpmCc[] setList,
            TpmCc[] clearList
        )
        {
            Tpm2PpCommandsRequest inS = new Tpm2PpCommandsRequest();
            inS.auth = auth;
            inS.setList = setList;
            inS.clearList = clearList;
            TpmStructureBase outSBase;
            DispatchMethod(TpmCc.PpCommands, (TpmStructureBase) inS, typeof(Tpm2PpCommandsResponse), out outSBase, 1, 0);
        }
        /// <summary>
Tpm2