[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

Visual Basic
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

Visual Basic
Sub Refresh ( _
		<OutAttribute> ByRef newlyAddedObjectIds As IList(Of Guid), _
		<OutAttribute> ByRef updatedObjectIds As IList(Of Guid), _
		<OutAttribute> ByRef deletedObjectIds As IList(Of Guid) _
)
C#
void Refresh (
		out IList<Guid> newlyAddedObjectIds,
		out IList<Guid> updatedObjectIds,
		out IList<Guid> deletedObjectIds
)
C++
void Refresh (
		[OutAttribute] IList<Guid>^% newlyAddedObjectIds, 
		[OutAttribute] IList<Guid>^% updatedObjectIds, 
		[OutAttribute] IList<Guid>^% deletedObjectIds
)
J#
void Refresh (
		/** @attribute OutAttribute() */ /** @ref */ IList<Guid> newlyAddedObjectIds, 
		/** @attribute OutAttribute() */ /** @ref */ IList<Guid> updatedObjectIds, 
		/** @attribute OutAttribute() */ /** @ref */ IList<Guid> deletedObjectIds
)
JScript

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 Server 2008, Windows Vista, Windows Server 2003, and Windows XP

Target Platforms

Windows Server 2008,Windows Server 2003

See Also