Closed Issue: Add extension method to HttpRequestMessage so that user can...
Internally, we have save the IsLocal result in the HttpRequestMessage's property bag. Here are where we populate them.SelfHost: HttpSelfHostServer.ProcessRequestContext()// Add information about...
View ArticleCommented Issue: asp.net mvc facebooktemplate causes...
Been following the tutorial for the new facebook mvc template from http://go.microsoft.com/fwlink/?LinkId=269921However even with the basic app template I'm unable to get it to run as it just flags the...
View ArticleNew Post: Request blocked by "await Task.Delay"
I'm having the following simple Web API controller: public class MyController : ApiController { public MyController() { AsyncTimer(); } [HttpGet] public string Get() { return "asdf"; } private async...
View ArticleCommented Issue: asp.net mvc facebooktemplate causes...
Been following the tutorial for the new facebook mvc template from http://go.microsoft.com/fwlink/?LinkId=269921However even with the basic app template I'm unable to get it to run as it just flags the...
View ArticleCommented Unassigned: Hiding controller from showing up on HelpPage does not...
__Scenario__:User does not like to show up a controller on HelpPage (ex: EntitySetController in OData), so he would like to use setting like [ApiExplorerSettings(IgnoreApi=true)] on the...
View ArticleCreated Unassigned: CreateOrUpdateOAuthAccount inserts without upper, updates...
CreateOrUpdateOAuthAccount in WebMatrix.WebData.SimpleMembershipProvider contains the following code:```if (oldUserId == -1){// account doesn't exist. create a new one. int insert = db.Execute(@"INSERT...
View ArticleCommented Unassigned: CreateOrUpdateOAuthAccount inserts without upper,...
CreateOrUpdateOAuthAccount in WebMatrix.WebData.SimpleMembershipProvider contains the following code:```if (oldUserId == -1){// account doesn't exist. create a new one. int insert = db.Execute(@"INSERT...
View ArticleClosed Unassigned: Hiding controller from showing up on HelpPage does not...
__Scenario__:User does not like to show up a controller on HelpPage (ex: EntitySetController in OData), so he would like to use setting like [ApiExplorerSettings(IgnoreApi=true)] on the...
View ArticleEdited Task: MQ: Make build/analyze/test fully incremental [1190]
Ensure all phases of the build are fully incremental, including:1. Compile2. Run Code Analysis (FxCop)3. Run StyleCop4. Run Unit testsIf I change product code that is only referenced by two unit test...
View ArticleEdited Task: Find a home for Url.IsLocalToHost [1189]
WebPages has RequestExtensions.IsUrlLocalToHost. We need something we can use from Web API and OWIN (not tied to any framework intrinsics). The hard part is figuring out where to put it. There are...
View ArticleEdited Feature: Provide a NoContent method in ApiController to specify 204...
It's something good to have out of the box
View ArticleClosed Unassigned: HttpDirectRoute is missing a ctor that takes a...
As HttpRoute has a ctor that takes a handler, HttpDirectRoute should also have a ctor that takes a handler. Or should per route message handlers be approached differently when using attributed...
View ArticleEdited Issue: ASP.NET WebPages 2 - Validation bug [1120]
Hi, the validation does not seem to work correctly in ASP.NET WebPages 2. I created a form and then used the RenderPage method to render that page into another page however on submit the validation...
View ArticleEdited Issue: [MVC4] Nullable rendered 0 in view when null [1103]
I have an issue with html attribute in a view.here :...
View ArticleEdited Issue: ViewContext.Writer.Write() inside @helper writes directly to...
I'm trying to get result of @helper method as variable without writing it to the view (I'm going to do it later after some transformations). And inside this helper I'm using extension to the HtmlHelper...
View ArticleEdited Unassigned: UPPER() in GetUserId causes scan instead of seek in...
GetUserId in WebMatrix.WebData.SimpleMembershipProvider is defined like this:```internal static int GetUserId(IDatabase db, string userTableName, string userNameColumn, string userIdColumn, string...
View ArticleEdited Unassigned: CreateOrUpdateOAuthAccount inserts without upper, updates...
CreateOrUpdateOAuthAccount in WebMatrix.WebData.SimpleMembershipProvider contains the following code:```if (oldUserId == -1){// account doesn't exist. create a new one. int insert = db.Execute(@"INSERT...
View ArticleEdited Issue: Format handlers configuration in web.config after install Web...
After installing CORS package, the current behavior is: The handlers config is one line<handlers><remove name="ExtensionlessUrlHandler-ISAPI-4.0_32bit" /><remove...
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 Article