1 write to BinderType
System.Web (1)
ModelBinding\ExtensibleModelBinderAttribute.cs (1)
8BinderType = binderType;
7 references to BinderType
System.Web (7)
ModelBinding\ModelBinderProviderCollection.cs (7)
117if (typeof(ModelBinderProvider).IsAssignableFrom(attr.BinderType)) { 118provider = (ModelBinderProvider)SecurityUtils.SecureCreateInstance(attr.BinderType); 120else if (typeof(IModelBinder).IsAssignableFrom(attr.BinderType)) { 121Type closedBinderType = (attr.BinderType.IsGenericTypeDefinition) ? attr.BinderType.MakeGenericType(modelType.GetGenericArguments()) : attr.BinderType; 127attr.BinderType, typeof(ModelBinderProvider), typeof(IModelBinder));