LoadBalancerFilterItemsT Method |
Filters an ienumerable of items and returns only items that should be handled by the local server.
Namespace: Scanjour.Workflow4.ActivityLibrary.ServiceProcessAssembly: Scanjour.Workflow4.ActivityLibrary_24.5.0.0 (in Scanjour.Workflow4.ActivityLibrary_24.5.0.0.dll) Version: 24.5.0.0 (24.5.0.0)
Syntaxpublic IEnumerable<T> FilterItems<T>(
IEnumerable<T> items,
Func<T, string> getkey
)
Public Function FilterItems(Of T) (
items As IEnumerable(Of T),
getkey As Func(Of T, String)
) As IEnumerable(Of T)
public:
generic<typename T>
IEnumerable<T>^ FilterItems(
IEnumerable<T>^ items,
Func<T, String^>^ getkey
)
member FilterItems :
items : IEnumerable<'T> *
getkey : Func<'T, string> -> IEnumerable<'T>
Parameters
- items IEnumerableT
- Items
- getkey FuncT, String
- Function that is able to get the string key from the item
Type Parameters
- T
- Type of items that is to be filteret
Return Value
IEnumerableT[Missing <returns> documentation for "M:Scanjour.Workflow4.ActivityLibrary.ServiceProcess.LoadBalancer.FilterItems``1(System.Collections.Generic.IEnumerable{``0},System.Func{``0,System.String})"]
See Also