System.Net.Mail.SendMailAsyncResult.SendMailAsyncResult C# (CSharp) Method

SendMailAsyncResult() private method

private SendMailAsyncResult ( SmtpConnection connection, System.Net.Mail.MailAddress from, MailAddressCollection toCollection, bool allowUnicode, string deliveryNotify, AsyncCallback callback, object state ) : System.Collections.Generic
connection SmtpConnection
from System.Net.Mail.MailAddress
toCollection MailAddressCollection
allowUnicode bool
deliveryNotify string
callback AsyncCallback
state object
return System.Collections.Generic
        internal SendMailAsyncResult(SmtpConnection connection, MailAddress from, MailAddressCollection toCollection,
            bool allowUnicode, string deliveryNotify, AsyncCallback callback, object state)
            : base(null, state, callback)
        {
            _toCollection = toCollection;
            _connection = connection;
            _from = from;
            _deliveryNotify = deliveryNotify;
            _allowUnicode = allowUnicode;
        }