Edited 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: Fix tracing info link to fwlink in webapiconfig comment [840]
// To disable tracing in your application, please comment out or remove the following line of code// For more information, refer to: http://www.asp.net/web-api...
View ArticleCommented Issue: Fix tracing info link to fwlink in webapiconfig comment [840]
// To disable tracing in your application, please comment out or remove the following line of code// For more information, refer to: http://www.asp.net/web-api...
View ArticleCommented Issue: DependencyScope is disposed before the HttpControllerTracer...
### Facts - I am using AutoFac as IoC container - I enabled tracing with my custom tracer. - During the trace operation, I try to get the `DependencyScope` through request.Properties collection.###...
View ArticleEdited Feature: Caching story for Web API [608]
There’s a couple of things to think about when considering caching – it is not enough to just look at the cache control header and turn off caching. We absolutely want to enable caching in a rich way...
View ArticleCommented Feature: Caching story for Web API [608]
There’s a couple of things to think about when considering caching – it is not enough to just look at the cache control header and turn off caching. We absolutely want to enable caching in a rich way...
View ArticleEdited Feature: Support OutputCache for web api [625]
This is a high demanded feature for web api users. It's better to make it to be a built in feature or a nuget package.Currently, there is no official sample code, blog about it. The most popular...
View ArticleEdited Feature: Add better support for excluding properties from model...
Currently hard to do because users have to register a custom ModelMetadataProvider. We need an attribute-based way of excluding properties.
View ArticleEdited Issue: Both traditional and verb-based routing cannot be used in the...
Currently, Web Api Controllers cannot host a mixture of verb-based action methods and traditional action name routing.For example, consider the scenario of a "business entity" controller with CRUD...
View ArticleCommented Issue: DependencyScope is disposed before the HttpControllerTracer...
### Facts - I am using AutoFac as IoC container - I enabled tracing with my custom tracer. - During the trace operation, I try to get the `DependencyScope` through request.Properties collection.###...
View ArticleCommented Issue: Razor outputs the string "value" or completely removes value...
I was creating some views where I used html for all my input fields instead of using the helper methods. I had some hidden fields that contained boolean values. I've done this often in MVC 3 and it was...
View ArticleEdited Issue: ModelMetadata.SimpleDisplayText throws NullReferenceException...
ASP.NET MVC v3 or earlier:_ModelMetadata.SimpleDisplayText_ throws _NullReferenceException_ if the Model represents a complex object and it's overridden ToString() return...
View ArticleCommented Issue: Model-binding collection fails when non-collection property...
Given a collection property named "foos" and another property named "foosBar" on an object being model-bound, because of the implementation of the PrefixContainer (specifically the IsPrefixMatch...
View ArticleCreated Issue: Testing controllers using Url helpers or ObjectContent is too...
Here is the code I am trying to test:```public HttpResponseMessage Post(WriteDocument document){ var response = new HttpResponseMessage(HttpStatusCode.Created); var id = Create(reader.Read(document),...
View ArticleEdited Issue: Testing ApiController using Url helpers or ObjectContent is too...
Here is the code I am trying to test:```public HttpResponseMessage Post(WriteDocument document){ var response = new HttpResponseMessage(HttpStatusCode.Created); var id = Create(reader.Read(document),...
View ArticleCommented Issue: Testing ApiController using Url helpers or ObjectContent is...
Here is the code I am trying to test:```public HttpResponseMessage Post(WriteDocument document){ var response = new HttpResponseMessage(HttpStatusCode.Created); var id = Create(reader.Read(document),...
View ArticleCreated Issue: DropDownListFor, value of lambda is not using in the initial...
When using DropDownListFor items from being selected during the initial display of the drop-down list for the value of the property specified in the lambda expression is not used.Because the value in...
View ArticleCreated Issue: Ability to add a class attribue to a WebGrid column header [854]
Hi!I am currently using the WebGrid and trying to do some styling to special colums. I can use the "Style" Property if the WebGridRow for this, but there is no way to style the header too. It would be...
View ArticleCreated Issue: Per-route messagehandlers should trace [855]
MessageHandlers associated with an IHttpRoute do not currently trace, but they should.Fixing this issue entails making the TraceManager wrap tracing message handlers around the HttpMessageHandlers for...
View ArticleCreated Issue: OutputCacheAttribute CacheProfile use for RenderAction...
If you have an action that you call with RenderAction that has an attribute like this:[OutputCache(CacheProfile="foo")]and in web.config you've set up that profile to include the required VaryByParam...
View Article