AwesomeSauce.Binding.EntityModelBinder.Bind C# (CSharp) Метод

Bind() публичный Метод

public Bind ( Type type, IBindingContext context ) : object
type System.Type
context IBindingContext
Результат object
        public object Bind(Type type, IBindingContext context)
        {
            object model = Activator.CreateInstance(type);
            context.BindProperties(model);
            return model;
        }
EntityModelBinder