Método BusinessLogicResolver.InvokeDeleteHandler
Essa API oferece suporte à infraestrutura do SQL Server 2012 e não se destina a ser usada diretamente no seu código.
Invokes a handler when DELETE statements are being uploaded or downloaded.
Namespace: Microsoft.SqlServer.Replication.BusinessLogicSupport
Assembly: Microsoft.SqlServer.Replication.BusinessLogicSupport (em Microsoft.SqlServer.Replication.BusinessLogicSupport.dll)
Sintaxe
'Declaração
Public Overrides Function InvokeDeleteHandler ( _
currentChangeState As ChangeStates, _
methodName As String, _
sourceIdentifier As SourceIdentifier, _
sourceDataSet As DataSet, _
ByRef logLevel As Integer, _
ByRef logMessage As String _
) As ActionOnDataDelete
'Uso
Dim instance As BusinessLogicResolver
Dim currentChangeState As ChangeStates
Dim methodName As String
Dim sourceIdentifier As SourceIdentifier
Dim sourceDataSet As DataSet
Dim logLevel As Integer
Dim logMessage As String
Dim returnValue As ActionOnDataDelete
returnValue = instance.InvokeDeleteHandler(currentChangeState, _
methodName, sourceIdentifier, sourceDataSet, _
logLevel, logMessage)
public override ActionOnDataDelete InvokeDeleteHandler(
ChangeStates currentChangeState,
string methodName,
SourceIdentifier sourceIdentifier,
DataSet sourceDataSet,
ref int logLevel,
ref string logMessage
)
public:
virtual ActionOnDataDelete InvokeDeleteHandler(
ChangeStates currentChangeState,
String^ methodName,
SourceIdentifier sourceIdentifier,
DataSet^ sourceDataSet,
int% logLevel,
String^% logMessage
) override
abstract InvokeDeleteHandler :
currentChangeState:ChangeStates *
methodName:string *
sourceIdentifier:SourceIdentifier *
sourceDataSet:DataSet *
logLevel:int byref *
logMessage:string byref -> ActionOnDataDelete
override InvokeDeleteHandler :
currentChangeState:ChangeStates *
methodName:string *
sourceIdentifier:SourceIdentifier *
sourceDataSet:DataSet *
logLevel:int byref *
logMessage:string byref -> ActionOnDataDelete
public override function InvokeDeleteHandler(
currentChangeState : ChangeStates,
methodName : String,
sourceIdentifier : SourceIdentifier,
sourceDataSet : DataSet,
logLevel : int,
logMessage : String
) : ActionOnDataDelete
Parâmetros
- currentChangeState
Tipo: Microsoft.SqlServer.Replication.BusinessLogicSupport.ChangeStates
The current change state.
- methodName
Tipo: System.String
The method name.
- sourceIdentifier
Tipo: Microsoft.SqlServer.Replication.BusinessLogicSupport.SourceIdentifier
The source identifier.
- sourceDataSet
Tipo: System.Data.DataSet
The source data set.
- logLevel
Tipo: System.Int32%
The log level
- logMessage
Tipo: System.String%
The log message.
Valor de retorno
Tipo: Microsoft.SqlServer.Replication.BusinessLogicSupport.ActionOnDataDelete
The ActionOnDataDelete that will be taken by the process after the custom business logic has executed.
Consulte também
Referência
Namespace Microsoft.SqlServer.Replication.BusinessLogicSupport