Get

Get<T>(int)

public T Get<T>(int index)

Exceptions

exceptioncondition
MedicalApiExceptionSequence can only return Dataset as a value.

See Also


Get<T>(Index)

public T Get<T>(Index index)

Exceptions

exceptioncondition
MedicalApiExceptionSequence can only return Dataset as a value.

See Also


Get(int)

Gets the element at the given index

public Dataset Get(int index)
ParameterTypeDescription
indexInt32Index of an element to retrieve.

Return Value

The Dataset at the given index.

Exceptions

exceptioncondition
IndexOutOfRangeExceptionindex is less than 0 or index is equal to or greater than Count.

See Also