Commented Issue: WebSecurity.CreateUserAndAccount IDictionary casting [870]
The WebSecurity.CreateUserAndAccount method checks for an input on the propertyValues parameter and converts it to a RouteValueDictionary before it is passed on to the ExtendedMembershipProvider.When...
View ArticleEdited Issue: WebSecurity.CreateUserAndAccount IDictionary casting [870]
The WebSecurity.CreateUserAndAccount method checks for an input on the propertyValues parameter and converts it to a RouteValueDictionary before it is passed on to the ExtendedMembershipProvider.When...
View ArticleEdited Issue: $select fails when Queryable has PageSize. [1020]
EntitySetController currently returns an IQueryable<T> for its Get() function. When supplying the $select query, it'll throw an ArgumentException stating that it is unable to convert the...
View ArticleCommented Issue: $select fails when Queryable has PageSize. [1020]
EntitySetController currently returns an IQueryable<T> for its Get() function. When supplying the $select query, it'll throw an ArgumentException stating that it is unable to convert the...
View ArticleCreated Unassigned: Web API Project Type Without Website files [1031]
Whenever I create an API, sometimes, I do not want a website associated with it. Please add a web API project type without Scripts, Views, Models and so on. Just add the ValuesController along with a...
View ArticleCommented Issue: [CORS] There is no easy way to set CORS policy for an HTTP...
To make the scenario of integrating the recently added HTTP batching function with CORS work, following setting up is required.'''var config =...
View ArticleEdited Issue: [CORS] Trace level of preflight request rejected should be...
__Issue__Today if a preflight is rejected. 400 is returned and following is the tracing output```iisexpress.exe Information: 0 : [2013-04-02T23:39:57.9893186Z] Level=Info, Kind=Begin,...
View ArticleEdited Feature: Provide a way to specify validation settings on...
Currently a user cannot specify what is the maximum size of a single file that is allowed or combined size of multiple files that are uploaded or restrict the number of files that are uploaded upfront....
View ArticleEdited Issue: HelpPage not showing documentation for actions which have...
From here: [http://stackoverflow.com/questions/15410057/webapi-help-page-for-complex-type-in-uri](http://stackoverflow.com/questions/15410057/webapi-help-page-for-complex-type-in-uri)Repro:Copy the...
View ArticleEdited Issue: Provide an easier extension to supply route specific message...
Currently a user has to do the following for inserting a per-route message handler. Provide an easier extension where we wire up the default HttpControllerDispatcher...
View ArticleEdited Issue: ApiExplorer not providing descriptions for route parameters not...
For the following ValuesController and default Web API route, the help page is getting generated as expected.public class ValuesController : ApiController{// GET api/values public...
View ArticleEdited Issue: Fix FxCop violations for Microsoft.AspNet.Mvc.Facebook assembly...
The facebook assembly is not currently running with the Strict ruleset for code analysis like the rest of our product assemblies.This...
View ArticleEdited Issue: ApiExplorer - Document not generated when routeTemplate not...
So I have Web Application project (not MVC), in Global.asax.cs we didn't do RouteTable.Routes.MapHttpRoute to maps all controller. For example, we are not using this:i.e)...
View ArticleEdited Issue: Model binding of route wildcard broken in Web API [718]
A route like this: routes.MapHttpRoute("KuduVirtualFileSystem","api/{segment}/{*path}", defaults: new { controller = "demo" });and a Web Api controller action like this:public async...
View ArticleEdited Issue: HttpActionContext.ActionArguments dictionary should use...
Currently the HttpActionContext.ActionArguments uses the default dictionary initializer, which means that the keys are looked up using a case-sensitive comparer.This conflicts with the stated design of...
View ArticleEdited Issue: Help Pages XmlDocumentationProvider should process class level...
We've got support for parsing comments generated for methods, but not the class. Would be great to also be able to provide class level xml comments.
View ArticleEdited Issue: ApiExplorer ignores valid actions when there are placeholders...
It seems the ApiExplorer ignores valid actions when there are placeholders in the route template which cannot be mapped to an action parameter, e.g.The ApiExplorer will not consider the route template...
View ArticleEdited Issue: Web Api - Populating action parameters through...
Populating an Web Api action method parameter using an action filter no longer works in MVC 4 RTM.Used to work in RC...To duplicate the issue:- Create a default Web Api project- Add a POST method to...
View ArticleEdited Issue: Default buffer size in MultipartFileStreamProvider should be...
The default *WRITE* buffer size in MultipartFileStreamProvider should match the value of the default *READ* buffer size in HttpContentMultipartExtensions.ReadAsMultipartAsync. Using the same buffer...
View ArticleEdited Feature: Make the ApiControllerActionSelector more extensible [277]
The goal is to have the default action selector (ApiControllerActionSelector) expose some hooks or properties so that it's easier to customize.
View Article