コード例 #1
0
        private void UpdateFromMem(IntPtr rPtr)
        {
            _gpgme_op_encrypt_result rst = new _gpgme_op_encrypt_result();
            Marshal.PtrToStructure(rPtr, rst);

            if (rst.invalid_recipients != IntPtr.Zero)
                invalid_recipients = new InvalidKey(rst.invalid_recipients);
        }
コード例 #2
0
        internal EncryptionResult(IntPtr rPtr)
        {
            invalid_recipients = null;

            if (rPtr == IntPtr.Zero)
                throw new InvalidPtrException("An invalid pointer for the encrypt_result structure has been supplied.");
            UpdateFromMem(rPtr);
        }