| IMapTKey, TValueProjectTResult Method (IProjection) |
Applies the projection logic on all map entries and returns the result
Namespace:
Hazelcast.Core
Assembly:
Hazelcast.Net (in Hazelcast.Net.dll) Version: 3.12.2
Syntax ICollection<TResult> Project<TResult>(
IProjection projection
)
Function Project(Of TResult) (
projection As IProjection
) As ICollection(Of TResult)
generic<typename TResult>
ICollection<TResult>^ Project(
IProjection^ projection
)
abstract Project :
projection : IProjection -> ICollection<'TResult>
Parameters
- projection
- Type: Hazelcast.CoreIProjection
Projection to transform the entries with. May return null.
This must be serializable via hazelcast serialization and have a counterpart on server side.
Type Parameters
- TResult
- type of the result
Return Value
Type:
ICollectionTResultthe result of the given type
See Also