DiscriminatedUnionIEnumerableExtensions.

Match<TUnion, Type1, Type2, Type3, Type4, Type5>(IEnumerable<TUnion>, Action<Type1>, Action<Type2>, Action<Type3>, Action<Type4>, Action<Type5>) Method

Summary

Matches the specific types and executes the given action for them.

Syntax

public static void Match<TUnion, Type1, Type2, Type3, Type4, Type5>(this IEnumerable<TUnion> values, Action<Type1> Action1, Action<Type2> Action2, Action<Type3> Action3, Action<Type4> Action4, Action<Type5> Action5) 
    where TUnion : DiscriminatedUnion<Type1, Type2, Type3, Type4, Type5>

Type Parameters

Name Description
TUnion TUnion
Type1 Type1
Type2 Type2
Type3 Type3
Type4 Type4
Type5 Type5

Parameters

Name Type Description
values IEnumerable<TUnion> existing Discriminated unions
Action1 Action<Type1> Action to run for Type1
Action2 Action<Type2> Action to run for Type2
Action3 Action<Type3> Action to run for Type3
Action4 Action<Type4> Action to run for Type4
Action5 Action<Type5> Action to run for Type5

Return Value

Type Description
void