Aqueduct.Mail.StreamAttachment.StreamAttachment C# (CSharp) Method

StreamAttachment() protected method

protected StreamAttachment ( string filename, Stream contentStream ) : System.IO
filename string
contentStream System.IO.Stream
return System.IO
        protected StreamAttachment(string filename, Stream contentStream)
        {
            m_filename = filename;
            m_contentStream = contentStream;
        }
StreamAttachment