Share via


ISynchronousNotifyingChangeApplier::LoadChangeApplierInfo

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

Syntax

HRESULT LoadChangeApplierInfo( 
  const BYTE *pbChangeApplierInfo,
  DWORD cbChangeApplierInfo);

Parameters

  • pbChangeApplierInfo
    [in, sizeof(cbChangeApplierInfo)] The serialized change applier data.

  • cbChangeApplierInfo
    [in] Specifies the number of bytes in pbChangeApplierInfo.

Return Value

  • S_OK

  • E_OUTOFMEMORY

  • E_INVALIDARG

  • E_POINTER

  • SYNC_E_DESERIALIZATION when the serialized data is not valid.

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

ISynchronousNotifyingChangeApplier Interface