I have to create a class that inherit from FileSystemWatcher
. I should Intercept the event OnCreated
and create my own event OnCreated
. I have tried as follow:
public class LocalFolderWatcher : FileSystemWatcher, IWatcher
{
...
public event LocalFolderEventHandler Created;
protected override void OnCreated(FileSystemEventArgs e)
{
string path = System.IO.Path.GetDirectoryName(e.FullPath);
LocalFolderEventArgs args = new LocalFolderEventArgs(e.ChangeType, this._gatewayConfigurationName, path, this._folderConfigurationName, e.Name);
if (Created != null && base.EnableRaisingEvents && base.Path != null)
Created(this, args);
base.OnCreated(e);
}
}
But I obtain an error: I cannot override a method that is not marked as virtual, abstract or override. I've tried to replace "override" with "new" but in this way the event is never raised..
How can I intercept the real "OnCreated" and replace with mine?
Thank you
You don't need to replace
OnCreated
, just create your own handler and pass it to theCreated
event.