Microsoft Chat Server SDK Reference

IChatChannelCallBack::OnRemoveAccess

This method is called whenever a security access entry is removed from the associated channel.

Syntax

C/C++:
HRESULT OnRemoveAccess(
   IChatChannel *Channel,
   IChatAccessEntry *Entry);
Visual Basic:
Sub IChatChannelCallBack_OnRemoveAccess( _
   ByVal Channel As CHATSVCLib.IChatChannel, _
   ByVal Entry As CHATSVCLib.IChatAccessEntry)

Parameters

Channel
Reference to ChatChannel object to which the access entry is added.
Entry
Reference to ChatAccessEntry object that is being removed.

Remarks

There is no way to cancel this event. The notification is sent after the access entry has been removed.

OnRemoveAccess notifications occur only when access entries are removed using the IRC/IRCX protocol. Changes made by extensions through the object model do not trigger callbacks.

When this channel property changes, the OnChannelPropertyChanged method is not called. Extensions interested in the OnRemoveAccess event must register for explicit notification.


© 1998 Microsoft Corporation. All rights reserved.