aspnetcore
Here are 1,898 public repositories matching this topic...
-
Updated
Nov 13, 2020 - C#
Create an include (something like https://github.com/dotnet/AspNetCore.Docs/blob/master/aspnetcore/includes/reservedRouting.md
With the info from https://github.com/dotnet/aspnetcore/wiki/MVC-Reserved-Keywords on routing. Be stronger, something like
These keywords should not be used for link generations, as model bound parameters, or top level properties.
Add the include to the 3
Whenever I submit a GET request to the api/public/groups endpoint, the "collections" field for each group returns "None" on every group, even if they have access to collections. I can verify that the
-
Updated
Nov 13, 2020 - C#
-
Updated
Nov 11, 2020 - C#
-
Updated
Nov 13, 2020 - C#
-
Updated
Nov 2, 2020 - C#
-
Updated
Nov 13, 2020
-
Updated
Aug 21, 2020 - C#
-
Updated
Nov 10, 2020 - C#
-
Updated
Nov 13, 2020 - C#
-
Updated
Nov 3, 2020 - C#
-
Updated
Nov 13, 2020 - C#
-
Updated
Nov 11, 2020 - C#
-
Updated
May 26, 2019 - TypeScript
-
Updated
Nov 10, 2020 - C#
-
Updated
Oct 16, 2019 - Vue
-
Updated
Aug 21, 2020 - C#
-
Updated
Oct 23, 2020 - C#
-
Updated
Nov 10, 2020 - C#
It's useful model for extend the expiration automatically sometime.
I haven't found related infomation about this feature.
Would you consider to support this feature?
-
Updated
Oct 31, 2020 - C#
-
Updated
Sep 1, 2020 - JavaScript
If you create a custom ICertificateAuthorityConfiguration and pass it to say a step-ca authority, with a custom port in the URL the FileSystemAccountStore tries to put the port in the directory name and fails.
Can we change from AuthorityUri to Host?
Add tests
-
Updated
Nov 9, 2020 - C#
-
Updated
Nov 13, 2020 - C#
-
Updated
Nov 1, 2020 - C#
-
Updated
Sep 16, 2020 - C#
Improve this page
Add a description, image, and links to the aspnetcore topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the aspnetcore topic, visit your repo's landing page and select "manage topics."
Currently if you return
T
in an action that returnsActionResult<T>
it will create anObjectResult
. The problem is that the StatusCode remains null rather than 200, even though the eventual response generated from it will be 200.This makes it confusing in, for example, an action filter, where a developer may only want to handle Ok object results on the executed context, including where `