Partager via


IObjectReaderBase.Refresh Method

[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

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

Namespace: Microsoft.EnterpriseManagement.Common
Assembly: Microsoft.EnterpriseManagement.Core (in Microsoft.EnterpriseManagement.Core.dll)

Usage

'Usage
Dim instance As IObjectReaderBase
Dim newlyAddedObjectIds As IList(Of Guid)
Dim updatedObjectIds As IList(Of Guid)
Dim deletedObjectIds As IList(Of Guid)

instance.Refresh(newlyAddedObjectIds, updatedObjectIds, deletedObjectIds)

Syntax

'Declaration
Sub Refresh ( _
    <OutAttribute> ByRef newlyAddedObjectIds As IList(Of Guid), _
    <OutAttribute> ByRef updatedObjectIds As IList(Of Guid), _
    <OutAttribute> ByRef deletedObjectIds As IList(Of Guid) _
)
void Refresh (
    out IList<Guid> newlyAddedObjectIds,
    out IList<Guid> updatedObjectIds,
    out IList<Guid> deletedObjectIds
)
void Refresh (
    [OutAttribute] IList<Guid>^% newlyAddedObjectIds, 
    [OutAttribute] IList<Guid>^% updatedObjectIds, 
    [OutAttribute] IList<Guid>^% deletedObjectIds
)
void Refresh (
    /** @attribute OutAttribute() */ /** @ref */ IList<Guid> newlyAddedObjectIds, 
    /** @attribute OutAttribute() */ /** @ref */ IList<Guid> updatedObjectIds, 
    /** @attribute OutAttribute() */ /** @ref */ IList<Guid> deletedObjectIds
)

Parameters

  • newlyAddedObjectIds
    When this method returns, it contains a list of identifiers that represent objects recently added to the reader. This parameter is passed uninitialized.
  • updatedObjectIds
    When this method returns, it contains a list of identifiers that represent objects recently updated. This parameter is passed uninitialized.
  • deletedObjectIds
    When this method returns, it contains a list of identifiers that represent objects recently deleted from the reader. This parameter is passed uninitialized.

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Vista, Windows Server 2003, and

Target Platforms

Windows Server 2008,Windows Server 2003

See Also

Reference

IObjectReaderBase Interface
IObjectReaderBase Members
Microsoft.EnterpriseManagement.Common Namespace