// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information. using System.Collections.Generic; using System.Linq; using System.Web.Http.Controllers; namespace System.Web.Http.ModelBinding.Binders { public class ArrayModelBinder : CollectionModelBinder { protected override bool CreateOrReplaceCollection(HttpActionContext actionContext, ModelBindingContext bindingContext, IList newCollection) { bindingContext.Model = newCollection.ToArray(); return true; } } }