-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
Copy pathModelBinderErrorMessageProvider.xml
32 lines (32 loc) · 2.2 KB
/
ModelBinderErrorMessageProvider.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<Type Name="ModelBinderErrorMessageProvider" FullName="System.Web.ModelBinding.ModelBinderErrorMessageProvider">
<TypeSignature Language="C#" Value="public delegate string ModelBinderErrorMessageProvider(ModelBindingExecutionContext modelBindingExecutionContext, ModelMetadata modelMetadata, object incomingValue);" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi sealed ModelBinderErrorMessageProvider extends System.MulticastDelegate" />
<TypeSignature Language="DocId" Value="T:System.Web.ModelBinding.ModelBinderErrorMessageProvider" />
<TypeSignature Language="VB.NET" Value="Public Delegate Function ModelBinderErrorMessageProvider(modelBindingExecutionContext As ModelBindingExecutionContext, modelMetadata As ModelMetadata, incomingValue As Object) As String " />
<TypeSignature Language="F#" Value="type ModelBinderErrorMessageProvider = delegate of ModelBindingExecutionContext * ModelMetadata * obj -> string" />
<TypeSignature Language="C++ CLI" Value="public delegate System::String ^ ModelBinderErrorMessageProvider(ModelBindingExecutionContext ^ modelBindingExecutionContext, ModelMetadata ^ modelMetadata, System::Object ^ incomingValue);" />
<AssemblyInfo>
<AssemblyName>System.Web</AssemblyName>
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Delegate</BaseTypeName>
</Base>
<Parameters>
<Parameter Name="modelBindingExecutionContext" Type="System.Web.ModelBinding.ModelBindingExecutionContext" />
<Parameter Name="modelMetadata" Type="System.Web.ModelBinding.ModelMetadata" />
<Parameter Name="incomingValue" Type="System.Object" />
</Parameters>
<ReturnValue>
<ReturnType>System.String</ReturnType>
</ReturnValue>
<Docs>
<param name="modelBindingExecutionContext">The model binding execution context. If the model binding execution context is <see langword="null" />, a new one is created and returned.
</param>
<param name="modelMetadata">The model metadata.</param>
<param name="incomingValue">An incoming value.</param>
<summary>Represents a method that provides a model-binding error message.</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Type>