TaskCollection.Contains Method |
Determines whether the ICollection<T> contains a specific value.
Namespace:
AGI.Parallel.Client
Assembly:
AGI.Parallel.Client (in AGI.Parallel.Client.dll) Version: 2.10.0.1777 (2.10.0.1777)
Syntaxpublic bool Contains(
Task item
)
Public Function Contains (
item As Task
) As Boolean
Parameters
- item
- Type: AGI.Parallel.Infrastructure.Task
The object to locate in the ICollection<T>.
Return Value
Type:
Booleantrue if
item is found in the
ICollection<T>; otherwise,
false.
Implements
ICollection<T>.Contains(T)
See Also