sidepop.Mime.MimeEntity.AppendLineContent C# (CSharp) Method

AppendLineContent() public method

Append content to current content bytes and decoded message
public AppendLineContent ( byte lineBytes ) : void
lineBytes byte
return void
        public void AppendLineContent(byte[] lineBytes)
        {
            _contentBytes.Add(lineBytes);
        }

Usage Example

コード例 #1
0
        /// <summary>
        /// Append the current queued line to the entity encoded / decoded message buffers
        /// </summary>
        private void AppendMessageContent()
        {
            byte[] lineBytes = Dequeue();

            _entity.AppendLineContent(lineBytes);
        }