ValueAccessorTValueGetValues Method |
Gets the value for all the specified domain objects.
Namespace:
Aloe.SystemFrameworks.Domain.Attributes
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxpublic virtual IEnumerable<KeyValuePair<DomainObject, TValue>> GetValues(
IEnumerable<DomainObject> objects,
CancellationToken cancellationToken
)
Public Overridable Function GetValues (
objects As IEnumerable(Of DomainObject),
cancellationToken As CancellationToken
) As IEnumerable(Of KeyValuePair(Of DomainObject, TValue))
public:
virtual IEnumerable<KeyValuePair<DomainObject^, TValue>^>^ GetValues(
IEnumerable<DomainObject^>^ objects,
CancellationToken^ cancellationToken
)
abstract GetValues :
objects : IEnumerable<DomainObject> *
cancellationToken : CancellationToken -> IEnumerable<KeyValuePair<DomainObject, 'TValue>>
override GetValues :
objects : IEnumerable<DomainObject> *
cancellationToken : CancellationToken -> IEnumerable<KeyValuePair<DomainObject, 'TValue>>
Parameters
- objects
- Type: System.Collections.GenericIEnumerableDomainObject
The objects. - cancellationToken
- Type: System.ThreadingCancellationToken
The cancellation token.
Use None if cancellation is not desired.
Return Value
Type:
IEnumerableKeyValuePairDomainObject,
TValue
The value for each of the objects.
Implements
IValueAccessorTValueGetValues(IEnumerableDomainObject, CancellationToken)
See Also