'Declaration
Public Event FileUpdated As EventHandler(Of FileUpdateEventArgs)
'Usage
Dim instance As Configuration Dim handler As EventHandler(Of FileUpdateEventArgs) AddHandler instance.FileUpdated, handler
public event EventHandler<FileUpdateEventArgs> FileUpdated
public: event EventHandler<FileUpdateEventArgs^>^ FileUpdated
Event Data
The event handler receives an argument of type FileUpdateEventArgs containing data related to this event. The following FileUpdateEventArgs properties provide information specific to this event.
Property | Description |
---|---|
Status | Gets the status. |
Requirements
Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
See Also