SmoApplication.AnyObjectEventHandler 대리자
The SmoApplication.AnyObjectEventHandler class represents the event handler that is used to handle events from any object.
네임스페이스: Microsoft.SqlServer.Management.Smo
어셈블리: Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)
구문
‘선언
Public Delegate Sub AnyObjectEventHandler ( _
sender As Object, _
e As SmoEventArgs _
)
‘사용 방법
Dim instance As New AnyObjectEventHandler(AddressOf HandlerMethod)
public delegate void AnyObjectEventHandler(
Object sender,
SmoEventArgs e
)
public delegate void AnyObjectEventHandler(
Object^ sender,
SmoEventArgs^ e
)
type AnyObjectEventHandler =
delegate of
sender:Object *
e:SmoEventArgs -> unit
Jscript는 위임 사용을 지원하지만 새로운 위임의 선언은 지원하지 않습니다.
매개 변수
- sender
유형: System.Object
An Object value that specifies the source of the event.
- e
유형: Microsoft.SqlServer.Management.Smo.SmoEventArgs
A Smohttps://msdn.microsoft.com/library/en-us/cpref/html/frlrfsystemeventargsclasstopic.asp EventArgs object that contains the event data.