Interface IWatcher
Specifies that this object supports a way to monitor a resource.
public interface IWatcher : IDisposable
  - Inherited Members
 
Properties
UtcLastModified
Gets the time when the resource being monitored was last changed.
DateTime UtcLastModified { get; }
  Property Value
- DateTime
 The time when the resource being monitored was last changed.
Methods
StartMonitoring()
Starts the monitoring of this IWatcher implementation.
void StartMonitoring()
  Events
Changed
Occurs when a resource has changed.
event EventHandler<WatcherEventArgs> Changed