Tpm2Lib.Tpm2.ContextLoad C# (CSharp) Method

ContextLoad() private method

private ContextLoad ( Context context ) : TpmHandle
context Context
return TpmHandle
        public TpmHandle ContextLoad(
            Context context
        )
        {
            Tpm2ContextLoadRequest inS = new Tpm2ContextLoadRequest();
            inS.context = context;
            TpmStructureBase outSBase;
            DispatchMethod(TpmCc.ContextLoad, (TpmStructureBase) inS, typeof(Tpm2ContextLoadResponse), out outSBase, 0, 1);
            Tpm2ContextLoadResponse outS = (Tpm2ContextLoadResponse) outSBase;
            return outS.loadedHandle;
        }
        /// <summary>
Tpm2