aspnetcore
Here are 1,888 public repositories matching this topic...
-
Updated
Nov 6, 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 6, 2020 - C#
-
Updated
Oct 26, 2020 - C#
-
Updated
Nov 7, 2020 - C#
-
Updated
Nov 2, 2020 - C#
-
Updated
Nov 6, 2020
-
Updated
Aug 21, 2020 - C#
-
Updated
Oct 28, 2020 - C#
-
Updated
Oct 31, 2020 - C#
-
Updated
Nov 3, 2020 - C#
-
Updated
Oct 29, 2020 - C#
-
Updated
Sep 27, 2020 - C#
-
Updated
May 26, 2019 - TypeScript
-
Updated
Nov 6, 2020 - C#
-
Updated
Oct 16, 2019 - Vue
-
Updated
Aug 21, 2020 - C#
-
Updated
Oct 23, 2020 - C#
-
Updated
Nov 5, 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
Sep 1, 2020 - JavaScript
-
Updated
Oct 31, 2020 - C#
Add tests
Beyonce said it best. If you like it then you shoulda put a test on it. Scenarios I like:
- Cert is created with right DN
- Cert is stored to X509Store after creation
- Cert request is not resubmitted
- Handles failures gracefully
- HTTP challenge/response works as expected
- Certificate renewal when cert is about to expiration
-
Updated
Nov 6, 2020 - C#
-
Updated
Nov 1, 2020 - C#
-
Updated
Nov 6, 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
Tin 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 `