简体   繁体   中英

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;

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.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM