Edit

Share via


FileSystemWatcher.OnError(ErrorEventArgs) Method

Definition

Raises the Error event.

protected void OnError(System.IO.ErrorEventArgs e);

Parameters

e
ErrorEventArgs

An ErrorEventArgs that contains the event data.

Remarks

OnError is called when an error occurs.

Raising an event invokes the event handler through a delegate. For more information, see Handling and Raising Events.

Notes to Inheritors

When overriding OnError(ErrorEventArgs) in a derived class, be sure to call the base class's OnError(ErrorEventArgs) method.

Applies to

See also