IUnion<A,B,C>.Match<TResult> Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
public TResult Match<TResult>(Func<A,TResult> a, Func<B,TResult> b, Func<C,TResult> c);
abstract member Match : Func<'A, 'Result> * Func<'B, 'Result> * Func<'C, 'Result> -> 'Result
Public Function Match(Of TResult) (a As Func(Of A, TResult), b As Func(Of B, TResult), c As Func(Of C, TResult)) As TResult
Type Parameters
- TResult
Parameters
- a
- Func<A,TResult>
- b
- Func<B,TResult>
- c
- Func<C,TResult>