Search code examples
c#lynclync-client-sdk

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;

Solution

  • 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.