[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]Populates the internal auto-increment cache with the values from the specific property. Namespace: Microsoft.EnterpriseManagement.Common
Assembly: Microsoft.EnterpriseManagement.Core (in microsoft.enterprisemanagement.core.dll)

Usage

Visual Basic
Dim property As ManagementPackProperty
Dim managementGroup As EnterpriseManagementGroup
Dim batchSize As Integer

EnterpriseManagementSimpleObject.PopulateAutoIncrementCache(property, managementGroup, batchSize)

Syntax

Visual Basic
Public Shared Sub PopulateAutoIncrementCache ( _
		property As ManagementPackProperty, _
		managementGroup As EnterpriseManagementGroup, _
		batchSize As Integer _
)
C#
public static void PopulateAutoIncrementCache (
		ManagementPackProperty property,
		EnterpriseManagementGroup managementGroup,
		int batchSize
)
C++
public:
static void PopulateAutoIncrementCache (
		ManagementPackProperty^ property, 
		EnterpriseManagementGroup^ managementGroup, 
		int batchSize
)
J#
public static void PopulateAutoIncrementCache (
		ManagementPackProperty property, 
		EnterpriseManagementGroup managementGroup, 
		int batchSize
)
JScript
public static function PopulateAutoIncrementCache (
		property : ManagementPackProperty, 
		managementGroup : EnterpriseManagementGroup, 
		batchSize : int
)

Parameters

property

The auto-increment property.

managementGroup

The management group that owns the property.

batchSize

The size of the batch.

Exceptions

Exception type Condition
ArgumentNullException

The property parameter is a null reference (Nothing in Visual Basic).

-or-

The managementGroup parameter is a null reference (Nothing in Visual Basic).

ArgumentOutOfRangeException

The batchSize parameter is less than zero.

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