TrackingTypeArchiverRetrieve Method |
Retrieves a value from the specified array. This method retrieves one
primitive from the array for each element in
Primitives, starting at
startIndex, and returns the value composed from the retrieved
primitives.
Namespace:
AGI.Foundation.Tracking
Assembly:
AGI.Foundation.Tracking (in AGI.Foundation.Tracking.dll) Version: 24.2.419.0 (24.2.419.0)
Syntax public abstract Object Retrieve(
Object[] primitiveArray,
int startIndex
)
Public MustOverride Function Retrieve (
primitiveArray As Object(),
startIndex As Integer
) As Object
public:
virtual Object^ Retrieve(
array<Object^>^ primitiveArray,
int startIndex
) abstract
abstract Retrieve :
primitiveArray : Object[] *
startIndex : int -> Object
Parameters
- primitiveArray
- Type: SystemObject
The array from which to retrieve the primitives composing the value. - startIndex
- Type: SystemInt32
The first index from which to retrieve the primitives composing the value.
Return Value
Type:
ObjectThe value retrieved from the primitive array.
See Also