IValueAccessorTValueSetValues Method |
Sets the values for the specified domain objects.
Namespace:
Aloe.SystemFrameworks.Domain
Assembly:
Aloe.SystemFrameworks.Domain (in Aloe.SystemFrameworks.Domain.dll) Version: 20.1.3.5
Syntaxvoid SetValues(
IEnumerable<KeyValuePair<DomainObject, TValue>> values,
CancellationToken cancellationToken
)
Sub SetValues (
values As IEnumerable(Of KeyValuePair(Of DomainObject, TValue)),
cancellationToken As CancellationToken
)
void SetValues(
IEnumerable<KeyValuePair<DomainObject^, TValue>^>^ values,
CancellationToken^ cancellationToken
)
abstract SetValues :
values : IEnumerable<KeyValuePair<DomainObject, 'TValue>> *
cancellationToken : CancellationToken -> unit
Parameters
- values
- Type: System.Collections.GenericIEnumerableKeyValuePairDomainObject, TValue
The values. - cancellationToken
- Type: System.ThreadingCancellationToken
The cancellation token.
Use None if cancellation is not desired.
See Also