Skip to content

Commit e4e6fbe

Browse files
committed
!fixup! Still more internal Mvc.Core types
1 parent 7b29b45 commit e4e6fbe

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

src/Mvc/Mvc.Core/ref/Microsoft.AspNetCore.Mvc.Core.Manual.cs

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1105,6 +1105,15 @@ public override void Write(System.Text.Json.Utf8JsonWriter writer, Microsoft.Asp
11051105
}
11061106
namespace Microsoft.AspNetCore.Mvc.ModelBinding
11071107
{
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+
}
11081117
public partial class ModelAttributes
11091118
{
11101119
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
11281137
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; }
11291138
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; }
11301139
}
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+
}
11311152
internal static partial class PropertyValueSetter
11321153
{
11331154
public static void SetValue(Microsoft.AspNetCore.Mvc.ModelBinding.ModelMetadata metadata, object instance, object value) { }

0 commit comments

Comments
 (0)