aspnetcore
Here are 2,495 public repositories matching this topic...
-
Updated
Jan 14, 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
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 11, 2022
-
Updated
Jan 14, 2022 - C#
-
Updated
Jan 14, 2022 - C#
-
Updated
Jan 14, 2022 - C#
-
Updated
Jan 12, 2022
-
Updated
Nov 2, 2021 - C#
-
Updated
Nov 22, 2021 - C#
-
Updated
Dec 13, 2021 - C#
-
Updated
Jan 14, 2022 - C#
-
Updated
Jan 12, 2022 - C#
-
Updated
Jan 13, 2022 - C#
-
Updated
Jan 13, 2022 - C#
-
Updated
Nov 1, 2021 - C#
-
Updated
Jan 11, 2022 - C#
-
Updated
Jan 5, 2022
-
Updated
May 26, 2019 - TypeScript
-
Updated
Jan 6, 2022 - C#
-
Updated
Nov 11, 2021 - 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
Dec 9, 2021 - C#
-
Updated
Oct 16, 2019 - Vue
-
Updated
Sep 26, 2021 - C#
-
Updated
Oct 23, 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
Jan 2, 2022 - JavaScript
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."


I'm using some client side SignalR-Services that get disposed, as soon as the component utilizing it gets destroyed.
Right now my code looks like this:
This