@@ -1105,6 +1105,15 @@ public override void Write(System.Text.Json.Utf8JsonWriter writer, Microsoft.Asp
1105
1105
}
1106
1106
namespace Microsoft . AspNetCore . Mvc . ModelBinding
1107
1107
{
1108
+ internal partial class ElementalValueProvider : Microsoft . AspNetCore . Mvc . ModelBinding . IValueProvider
1109
+ {
1110
+ public ElementalValueProvider ( string key , string value , System . Globalization . CultureInfo culture ) { }
1111
+ public System . Globalization . CultureInfo Culture { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
1112
+ public string Key { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
1113
+ public string Value { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } }
1114
+ public bool ContainsPrefix ( string prefix ) { throw null ; }
1115
+ public Microsoft . AspNetCore . Mvc . ModelBinding . ValueProviderResult GetValue ( string key ) { throw null ; }
1116
+ }
1108
1117
public partial class ModelAttributes
1109
1118
{
1110
1119
internal ModelAttributes ( System . Collections . Generic . IEnumerable < object > typeAttributes , System . Collections . Generic . IEnumerable < object > propertyAttributes , System . Collections . Generic . IEnumerable < object > parameterAttributes ) { }
@@ -1128,6 +1137,18 @@ public static void ClearValidationStateForModel(System.Type modelType, Microsoft
1128
1137
public static System . Threading . Tasks . Task < bool > TryUpdateModelAsync < TModel > ( TModel model , string prefix , Microsoft . AspNetCore . Mvc . ActionContext actionContext , Microsoft . AspNetCore . Mvc . ModelBinding . IModelMetadataProvider metadataProvider , Microsoft . AspNetCore . Mvc . ModelBinding . IModelBinderFactory modelBinderFactory , Microsoft . AspNetCore . Mvc . ModelBinding . IValueProvider valueProvider , Microsoft . AspNetCore . Mvc . ModelBinding . Validation . IObjectModelValidator objectModelValidator , System . Func < Microsoft . AspNetCore . Mvc . ModelBinding . ModelMetadata , bool > propertyFilter ) where TModel : class { throw null ; }
1129
1138
public static System . Threading . Tasks . Task < bool > TryUpdateModelAsync < TModel > ( TModel model , string prefix , Microsoft . AspNetCore . Mvc . ActionContext actionContext , Microsoft . AspNetCore . Mvc . ModelBinding . IModelMetadataProvider metadataProvider , Microsoft . AspNetCore . Mvc . ModelBinding . IModelBinderFactory modelBinderFactory , Microsoft . AspNetCore . Mvc . ModelBinding . IValueProvider valueProvider , Microsoft . AspNetCore . Mvc . ModelBinding . Validation . IObjectModelValidator objectModelValidator , params System . Linq . Expressions . Expression < System . Func < TModel , object > > [ ] includeExpressions ) where TModel : class { throw null ; }
1130
1139
}
1140
+ internal partial class NoOpBinder : Microsoft . AspNetCore . Mvc . ModelBinding . IModelBinder
1141
+ {
1142
+ public static readonly Microsoft . AspNetCore . Mvc . ModelBinding . IModelBinder Instance ;
1143
+ public NoOpBinder ( ) { }
1144
+ public System . Threading . Tasks . Task BindModelAsync ( Microsoft . AspNetCore . Mvc . ModelBinding . ModelBindingContext bindingContext ) { throw null ; }
1145
+ }
1146
+ internal partial class PlaceholderBinder : Microsoft . AspNetCore . Mvc . ModelBinding . IModelBinder
1147
+ {
1148
+ public PlaceholderBinder ( ) { }
1149
+ public Microsoft . AspNetCore . Mvc . ModelBinding . IModelBinder Inner { [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] get { throw null ; } [ System . Runtime . CompilerServices . CompilerGeneratedAttribute ] set { } }
1150
+ public System . Threading . Tasks . Task BindModelAsync ( Microsoft . AspNetCore . Mvc . ModelBinding . ModelBindingContext bindingContext ) { throw null ; }
1151
+ }
1131
1152
internal static partial class PropertyValueSetter
1132
1153
{
1133
1154
public static void SetValue ( Microsoft . AspNetCore . Mvc . ModelBinding . ModelMetadata metadata , object instance , object value ) { }
0 commit comments