Reputation: 73
im very new to C# as well as lync SDK, can sumone help me to understand the meaning of the below line. what i understood was whenever lefthand side event occures it will call the rightthand side handler. am i correct?
lyncClient.ConversationManager.ConversationAdded += ConversationManager_ConversationAdded;
Upvotes: 0
Views: 291
Reputation: 481
You add an event handler called ConversationManager_ConversationAdded
to a structure associated with event ConversationAdded
. When a ConversationAdded
event occurs, all handlers added will be called with arguments defining context of this event occurence.
Upvotes: 1