ParameterBindingRulesCollection.Insert Method (Int32, Type, Func<HttpParameterDescriptor, HttpParameterBinding>)
Insert a function at the specified index in the collection. /// The function added is a wrapper around funcInner that checks that parameterType matches typeMatch.
Namespace: System.Web.Http.ModelBinding
Assembly: System.Web.Http (in System.Web.Http.dll)
Syntax
'Declaration
Public Sub Insert ( _
index As Integer, _
typeMatch As Type, _
funcInner As Func(Of HttpParameterDescriptor, HttpParameterBinding) _
)
'Usage
Dim instance As ParameterBindingRulesCollection
Dim index As Integer
Dim typeMatch As Type
Dim funcInner As Func(Of HttpParameterDescriptor, HttpParameterBinding)
instance.Insert(index, typeMatch, funcInner)
public void Insert(
int index,
Type typeMatch,
Func<HttpParameterDescriptor, HttpParameterBinding> funcInner
)
public:
void Insert(
int index,
Type^ typeMatch,
Func<HttpParameterDescriptor^, HttpParameterBinding^>^ funcInner
)
member Insert :
index:int *
typeMatch:Type *
funcInner:Func<HttpParameterDescriptor, HttpParameterBinding> -> unit
public function Insert(
index : int,
typeMatch : Type,
funcInner : Func<HttpParameterDescriptor, HttpParameterBinding>
)
Parameters
index
Type: System.Int32index to insert at.
typeMatch
Type: System.Typetype to match against HttpParameterDescriptor.ParameterType
funcInner
Type: System.Func<HttpParameterDescriptor, HttpParameterBinding>inner function that is invoked if type match succeeds