Share via


IObjectReaderBase.Refresh Method

Definition

Refreshes the reader, and returns the identifiers of the objects that have been added, updated, or deleted.

public:
 void Refresh([Runtime::InteropServices::Out] System::Collections::Generic::IList<Guid> ^ % newlyAddedObjectIds, [Runtime::InteropServices::Out] System::Collections::Generic::IList<Guid> ^ % updatedObjectIds, [Runtime::InteropServices::Out] System::Collections::Generic::IList<Guid> ^ % deletedObjectIds);
public void Refresh (out System.Collections.Generic.IList<Guid> newlyAddedObjectIds, out System.Collections.Generic.IList<Guid> updatedObjectIds, out System.Collections.Generic.IList<Guid> deletedObjectIds);
abstract member Refresh : IList * IList * IList -> unit
Public Sub Refresh (ByRef newlyAddedObjectIds As IList(Of Guid), ByRef updatedObjectIds As IList(Of Guid), ByRef deletedObjectIds As IList(Of Guid))

Parameters

newlyAddedObjectIds
IList<Guid>

When this method returns, it contains a list of identifiers that represent objects recently added to the reader. This parameter is passed uninitialized.

updatedObjectIds
IList<Guid>

When this method returns, it contains a list of identifiers that represent objects recently updated. This parameter is passed uninitialized.

deletedObjectIds
IList<Guid>

When this method returns, it contains a list of identifiers that represent objects recently deleted from the reader. This parameter is passed uninitialized.

Applies to