ScriptingProgress 이벤트
Raises an event to receive information about the progress of the scripting operation.
네임스페이스: Microsoft.SqlServer.Management.Smo
어셈블리: Microsoft.SqlServer.Smo.dll의 Microsoft.SqlServer.Smo
구문
‘선언
Public Event ScriptingProgress As ProgressReportEventHandler
‘사용 방법
Dim instance As Scripter
Dim handler As ProgressReportEventHandler
AddHandler instance.ScriptingProgress, handler
public event ProgressReportEventHandler ScriptingProgress
public:
event ProgressReportEventHandler^ ScriptingProgress {
void add (ProgressReportEventHandler^ value);
void remove (ProgressReportEventHandler^ value);
}
member ScriptingProgress : IEvent<ProgressReportEventHandler,
ProgressReportEventArgs>
Jscript는 이벤트 사용을 지원하지만 새로운 이벤트 선언은 지원하지 않습니다.
주의
Event Data
The following ProgressReportEventArgs properties provide information specific to this event.
Property |
Description |
---|---|
Current |
Gets the Urn object value that specifies the object that the operation is currently processing. |
Parent |
Gets the Urn object value that specifies the topmost object in the hierarchy that the operation is processing. |
SubTotal |
Gets the current count of objects that are processed by the operation in the current branch of the object hierarchy. |
SubTotalCount |
Gets the total number of objects in the current branch of the object hierarchy. |
Total |
Get the total number of objects in the entire object hierarchy. |
TotalCount |
Gets the current count of objects that are processed by the operation in the entire object hierarchy. |