jammy
jammy

Reputation: 73

Understanding Event Handlers in lync

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

Answers (1)

Mariusz
Mariusz

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

Related Questions