DotMSN

Messenger.ConversationCreated Event

Occurs when a new conversation is created. Either by a local or remote invitation.

[Visual Basic]
Public Event ConversationCreated As ConversationCreatedEventHandler
[C#]
public event ConversationCreatedEventHandler ConversationCreated;

Event Data

The event handler receives an argument of type ConversationCreatedEventArgs containing data related to this event. The following ConversationCreatedEventArgs properties provide information specific to this event.

Property Description
Conversation The affected conversation
Initiator The object that requested the switchboard. Null if the conversation was initiated by a remote client.

Remarks

You can check the initiator object in the event arguments to see which party initiated the conversation. This event is called after the messenger server has created a switchboard handler, so there is always a valid messageprocessor.

See Also

Messenger Class | XihSolutions.DotMSN Namespace