public virtual void OnAttendeeConnected(object pAttendee)
        {
            _IRDPSessionEvents_OnAttendeeConnectedEvent _IRDPSessionEventsOnAttendeeConnectedEvent =
                new _IRDPSessionEvents_OnAttendeeConnectedEvent(pAttendee);

            this.parent.RaiseOnOnAttendeeConnected(this.parent, _IRDPSessionEventsOnAttendeeConnectedEvent);
        }
Esempio n. 2
0
 internal void RaiseOnOnAttendeeConnected(object sender, _IRDPSessionEvents_OnAttendeeConnectedEvent e)
 {
     if (this.OnAttendeeConnected != null)
     {
         this.OnAttendeeConnected(e);
     }
 }