System.Net.Mail.SendMailAsyncResult.SendMailAsyncResult C# (CSharp) Méthode

SendMailAsyncResult() private méthode

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
Résultat 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;
        }