PercentComplete 事件
Occurs when a backup or restore operation reaches a completion unit.
命名空间: Microsoft.SqlServer.Management.Smo
程序集: Microsoft.SqlServer.SmoExtended(在 Microsoft.SqlServer.SmoExtended.dll 中)
语法
声明
Public Event PercentComplete As PercentCompleteEventHandler
用法
Dim instance As BackupRestoreBase
Dim handler As PercentCompleteEventHandler
AddHandler instance.PercentComplete, handler
public event PercentCompleteEventHandler PercentComplete
public:
event PercentCompleteEventHandler^ PercentComplete {
void add (PercentCompleteEventHandler^ value);
void remove (PercentCompleteEventHandler^ value);
}
member PercentComplete : IEvent<PercentCompleteEventHandler,
PercentCompleteEventArgs>
JScript 支持使用事件,但不支持声明新事件。
注释
In JScript, you can handle the events defined by a class, but you cannot define your own.
Event Data
The event handler receives an argument of type PercentCompleteEventArgs containing data related to this event. The following properties provide information specific to this event.
Property |
Description |
---|---|
Error |
Occurs when an error is raised. |
Percent |
The percentage that represents a completion unit. After completing every unit, an event is raised. |