Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Applies to v2.
Deregisters for all change notification for a path.
Namespace: Microsoft.WebMatrix.Extensibility
Assembly: Microsoft.WebMatrix.Extensibility (in Microsoft.WebMatrix.Extensibility.dll)
Syntax
'Declaration
Sub DeregisterForSiteNotifications ( _
changeTypes As WatcherChangeTypes, _
handler As FileSystemEventHandler, _
renameHandler As RenamedEventHandler _
)
'Usage
Dim instance As ISiteFileWatcherService
Dim changeTypes As WatcherChangeTypes
Dim handler As FileSystemEventHandler
Dim renameHandler As RenamedEventHandler
instance.DeregisterForSiteNotifications(changeTypes, _
handler, renameHandler)
void DeregisterForSiteNotifications(
WatcherChangeTypes changeTypes,
FileSystemEventHandler handler,
RenamedEventHandler renameHandler
)
void DeregisterForSiteNotifications(
WatcherChangeTypes changeTypes,
FileSystemEventHandler^ handler,
RenamedEventHandler^ renameHandler
)
abstract DeregisterForSiteNotifications :
changeTypes:WatcherChangeTypes *
handler:FileSystemEventHandler *
renameHandler:RenamedEventHandler -> unit
function DeregisterForSiteNotifications(
changeTypes : WatcherChangeTypes,
handler : FileSystemEventHandler,
renameHandler : RenamedEventHandler
)
Parameters
changeTypes
Type: System.IO.WatcherChangeTypesThe types of notifications you want to receive.
handler
Type: System.IO.FileSystemEventHandlerThe handler which was receiving the notifications previously.
renameHandler
Type: System.IO.RenamedEventHandlerThe rename handler.