Dela via


NotifyingChangeApplier.LoadChangeApplierInfo Method

Loads change applier data from a byte array that contains serialized data from another change applier.

Namespace:  Microsoft.Synchronization
Assembly:  Microsoft.Synchronization (in Microsoft.Synchronization.dll)

Syntax

'Declaration
Public Sub LoadChangeApplierInfo ( _
    changeApplierInfo As Byte() _
)
'Usage
Dim instance As NotifyingChangeApplier
Dim changeApplierInfo As Byte()

instance.LoadChangeApplierInfo(changeApplierInfo)
public void LoadChangeApplierInfo(
    byte[] changeApplierInfo
)
public:
void LoadChangeApplierInfo(
    array<unsigned char>^ changeApplierInfo
)
member LoadChangeApplierInfo : 
        changeApplierInfo:byte[] -> unit 
public function LoadChangeApplierInfo(
    changeApplierInfo : byte[]
)

Parameters

  • changeApplierInfo
    Type: System.Byte[]
    Change applier data that is obtained by calling LoadChangeApplierInfo on another change applier.

Exceptions

Exception Condition
ArgumentNullException

changeApplierInfo is a null reference (Nothing in Visual Basic).

Remarks

This method is used to initialize this change applier by using data serialized from another change applier. For example, if the other change applier is remote, the data can be serialized from the other change applier and used to initialize this change applier.

See Also

Reference

NotifyingChangeApplier Class

Microsoft.Synchronization Namespace