[This is preliminary documentation and is subject to change.]

Gets a thread-safe "read-only" list of all of the declarative chunks in the world that contain all of the dimension-value pairs with the specified world IDs.

Namespace: Clarion
Assembly: ClarionLibrary (in ClarionLibrary.dll) Version: 6.1.1.0 (6.1.1.0)

Syntax

C#
public static IEnumerable<DeclarativeChunk> GetDeclarativeChunksContainingDVs(
	ICollection<Guid> dvWorldIDs
)

Parameters

dvWorldIDs
Type: System.Collections.Generic..::..ICollection<(Of <(<'Guid>)>)>

Return Value

A "read-only" list of all the declarative chunks in the world that contain all of the dimension-value pairs with the specified world IDs

Remarks

Note
Manipulating the list returned by this method has no effect on the world itself. If you want to add or remove an item from the world you need to call either one of the "New..." methods or the "Remove" method (respectively).

Exceptions

ExceptionCondition
System..::..InvalidOperationExceptionIf the singleton world instance has not been initialized

See Also