aspnetcore
Here are 2,520 public repositories matching this topic...
-
Updated
Jan 31, 2022 - C#
Update
Document Details
- ID: 9795b92f-db24-8f1f-88c0-c36666d3526f
- Version Independent ID: 2d56d9b6-3d7b-0204-6c08-8e584fccecc2
- Content: Response compression in ASP.NET Core
- C
-
Updated
Jan 28, 2022
Hi,
my admin portal looks like this :
Version
- Server Installed 1.38.4
- Server Latest 1.38.4
- Web Installed -
- Web Latest 2.17.1
It seems that, at some point, 'GetInstalledWebVersion()' in 'Admin.dll' is called? Could anyone help me understand what do I need to check, to fix this?
-
Updated
Jan 31, 2022 - C#
-
Updated
Jan 28, 2022 - C#
-
Updated
Jan 27, 2022 - C#
-
Updated
Jan 31, 2022
-
Updated
Nov 2, 2021 - C#
-
Updated
Jan 26, 2022 - C#
-
Updated
Jan 31, 2022 - C#
-
Updated
Jan 29, 2022 - C#
-
Updated
Jan 16, 2022 - C#
-
Updated
Jan 29, 2022 - C#
-
Updated
Jan 25, 2022 - C#
-
Updated
Nov 1, 2021 - C#
-
Updated
Jan 25, 2022 - C#
-
Updated
Jan 25, 2022
-
Updated
Jan 26, 2022 - C#
-
Updated
May 26, 2019 - TypeScript
-
Updated
Jan 18, 2022
-
Updated
Jan 22, 2022 - C#
Seem we need RemoveAll cache with out parameter, or can called by remove everything for invalidate all cache.
For now I use following code
var listPrefix = new List<string>
{
"foo",
"bar",
"another-foo"
};
listPrefix.ForEach(prefix => {
cachingProvider.RemoveByPrefix(prefix);
});
Instead of write above code, we may can write single like below
` cachin
-
Updated
Jan 22, 2022 - C#
-
Updated
Oct 16, 2019 - Vue
-
Updated
Sep 26, 2021 - 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
Oct 23, 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."
Is there an existing issue for this?
Describe the bug
RFC7231 suggests that the
Location
header is optional for201
Created response.