Click or drag to resize

DefinitionalObjectCollection<T> Constructor (DefinitionalObjectCollection<T>, CopyContext, Boolean)

Initializes a new instance as a copy of an existing instance.

Namespace:  AGI.Foundation.Infrastructure
Assembly:  AGI.Foundation.Core (in AGI.Foundation.Core.dll) Version: 24.3.420.0 (24.3.420.0)
Syntax
protected DefinitionalObjectCollection(
	DefinitionalObjectCollection<T> existingInstance,
	CopyContext context,
	bool copyContainedObjects
)

Parameters

existingInstance
Type: AGI.Foundation.Infrastructure.DefinitionalObjectCollection<T>
The existing instance to copy.
context
Type: AGI.Foundation.Infrastructure.CopyContext
A CopyContext that controls the depth of the copy.
copyContainedObjects
Type: System.Boolean
Indicates whether objects in the collection should be copied to a new instance.
Exceptions
ExceptionCondition
ArgumentNullException Thrown when existingInstance or context is null.
Remarks
See Clone(CopyContext) for more information about how to implement this constructor in a derived class.
See Also