Exemple #1
0
        public void PropogateAttachments(CVBuffer destinationBuffer)
        {
            if (destinationBuffer == null)
            {
                throw new ArgumentNullException("destinationBuffer");
            }

            CVBufferPropagateAttachments(handle, destinationBuffer.Handle);
        }
Exemple #2
0
        public void PropogateAttachments(CVBuffer destinationBuffer)
        {
            if (destinationBuffer is null)
            {
                throw new ArgumentNullException(nameof(destinationBuffer));
            }

            CVBufferPropagateAttachments(Handle, destinationBuffer.Handle);
        }