24 lines
745 B
C#
24 lines
745 B
C#
// Copyright (c) .NET Foundation. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System.Collections.Generic;
|
|
using Microsoft.AspNet.Mvc.Formatters;
|
|
using Microsoft.AspNet.Mvc.ModelBinding;
|
|
using Microsoft.AspNet.Mvc.ModelBinding.Validation;
|
|
|
|
namespace Microsoft.AspNet.Mvc
|
|
{
|
|
public class ActionBindingContext
|
|
{
|
|
public IModelBinder ModelBinder { get; set; }
|
|
|
|
public IValueProvider ValueProvider { get; set; }
|
|
|
|
public IList<IInputFormatter> InputFormatters { get; set; }
|
|
|
|
public IList<IOutputFormatter> OutputFormatters { get; set; }
|
|
|
|
public IModelValidatorProvider ValidatorProvider { get; set; }
|
|
}
|
|
}
|