TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
packiaraj
NA
1
1.3k
ConnectEventHandler
Mar 4 2013 11:41 PM
public delegate void ConnectEventHandler(object sender,string Server,int Port);
public event ConnectEventHandler ConnectionEstablishing;
private void RaiseConnectionEstablishing(string smtpServer, int smtpPort)
{
if (ConnectionEstablishing != null)
{
ConnectionEstablishing(this, smtpServer, smtpPort);
}
}
just ConnectEventHandler is enough for connecting Smtp Server... what is the meaning of connectEventHandler?
Reply
Answers (
0
)
How to search a record from database by date range.
TreeView with BackGroundWorker