IPartialActionBuilder Methods

The IPartialActionBuilder type exposes the following members.

Methods


  Name Description
Public method Build<(Of <<'(T>)>>)
Builds the specified delegate and arguments to a PartialAction<>

If the number of arguments are 0, the delegate should be a Func<,bool>

If the number of arguments are 1, the delegate should be a Func<,T1,bool>

...

If the number of arguments are n, the delegate should be a Func<T,T1,...,Tn,bool>

The maximum number of arguments i.e. n in the above example is therefore MaxNumberOfArguments=14

Given a delegate deleg of type Func<T,T1,...,Tn,bool> and args [a_1,...a_n] then the delegate corresponding to this code is returned:

Examples


(value) => deleg(value,a_1, ..., a_n)

Public method Equals(System.Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
Protected method Finalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public method GetHashCode
Serves as a hash function for a particular type.
(Inherited from Object.)
Public method GetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected method MemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public method ToString
Returns a string that represents the current object.
(Inherited from Object.)