Partager via


Méthode IBusinessLogicResolver.InvokeUpdateDeleteConflictHandler

Cette API prend en charge l'infrastructure SQL Server 2012 et n'est pas destinée à être utilisée directement à partir de votre code.

Invokes a handler when UPDATE statements conflict with DELETE statements at the source and at the destination.

Espace de noms :  Microsoft.SqlServer.Replication.BusinessLogicSupport
Assembly :  Microsoft.SqlServer.Replication.BusinessLogicSupport (en Microsoft.SqlServer.Replication.BusinessLogicSupport.dll)

Syntaxe

'Déclaration
Public MustOverride Function InvokeUpdateDeleteConflictHandler ( _
    currentChangeState As ChangeStates, _
    methodName As String, _
    sourceIdentifier As SourceIdentifier, _
    sourceDataSet As DataSet, _
    destinationDataSet As DataSet, _
    ByRef customDataSet As DataSet, _
    downloadPhase As Boolean, _
    ByRef logConflictType As ConflictLogType, _
    ByRef conflictLogMessage As String, _
    ByRef logLevel As Integer, _
    ByRef logMessage As String _
) As ActionOnUpdateDeleteConflict
'Utilisation
Dim instance As IBusinessLogicResolver 
Dim currentChangeState As ChangeStates 
Dim methodName As String 
Dim sourceIdentifier As SourceIdentifier 
Dim sourceDataSet As DataSet 
Dim destinationDataSet As DataSet 
Dim customDataSet As DataSet 
Dim downloadPhase As Boolean 
Dim logConflictType As ConflictLogType 
Dim conflictLogMessage As String 
Dim logLevel As Integer 
Dim logMessage As String 
Dim returnValue As ActionOnUpdateDeleteConflict 

returnValue = instance.InvokeUpdateDeleteConflictHandler(currentChangeState, _
    methodName, sourceIdentifier, sourceDataSet, _
    destinationDataSet, customDataSet, _
    downloadPhase, logConflictType, _
    conflictLogMessage, logLevel, logMessage)
public abstract ActionOnUpdateDeleteConflict InvokeUpdateDeleteConflictHandler(
    ChangeStates currentChangeState,
    string methodName,
    SourceIdentifier sourceIdentifier,
    DataSet sourceDataSet,
    DataSet destinationDataSet,
    ref DataSet customDataSet,
    bool downloadPhase,
    ref ConflictLogType logConflictType,
    ref string conflictLogMessage,
    ref int logLevel,
    ref string logMessage
)
public:
virtual ActionOnUpdateDeleteConflict InvokeUpdateDeleteConflictHandler(
    ChangeStates currentChangeState, 
    String^ methodName, 
    SourceIdentifier sourceIdentifier, 
    DataSet^ sourceDataSet, 
    DataSet^ destinationDataSet, 
    DataSet^% customDataSet, 
    bool downloadPhase, 
    ConflictLogType% logConflictType, 
    String^% conflictLogMessage, 
    int% logLevel, 
    String^% logMessage
) abstract
abstract InvokeUpdateDeleteConflictHandler : 
        currentChangeState:ChangeStates * 
        methodName:string * 
        sourceIdentifier:SourceIdentifier * 
        sourceDataSet:DataSet * 
        destinationDataSet:DataSet * 
        customDataSet:DataSet byref * 
        downloadPhase:bool * 
        logConflictType:ConflictLogType byref * 
        conflictLogMessage:string byref * 
        logLevel:int byref * 
        logMessage:string byref -> ActionOnUpdateDeleteConflict
public abstract function InvokeUpdateDeleteConflictHandler(
    currentChangeState : ChangeStates, 
    methodName : String, 
    sourceIdentifier : SourceIdentifier, 
    sourceDataSet : DataSet, 
    destinationDataSet : DataSet, 
    customDataSet : DataSet, 
    downloadPhase : boolean, 
    logConflictType : ConflictLogType, 
    conflictLogMessage : String, 
    logLevel : int, 
    logMessage : String
) : ActionOnUpdateDeleteConflict

Paramètres

  • customDataSet
    Type : System.Data.DataSet%
    Data set implemented by the custom business logic.
  • downloadPhase
    Type : System.Boolean
    Specifies whether the phase about to begin is an upload or download.
  • conflictLogMessage
    Type : System.String%
    The conflict log message.

Valeur de retour

Type : Microsoft.SqlServer.Replication.BusinessLogicSupport.ActionOnUpdateDeleteConflict
The ActionOnUpdateDeleteConflict action that will be taken by the process after the custom business logic handler has executed.

Voir aussi

Référence

IBusinessLogicResolver Classe

Espace de noms Microsoft.SqlServer.Replication.BusinessLogicSupport