Advanced Search
Search Results
5 total results found
test
C#
Creating binary fileformat
Below is an example of a C# console application that creates a single binary file containing all the audiobook files from a given directory, along with their metadata. This simple example demonstrates how to write the file names and contents into one binary fi...
ASP.NET Certificate Issue
When webbrowser does not open the web project and shows error like this: SEC_ERROR_BAD_SIGNATURE. What helps me is this: PS C:\Users\ppollak> cd 'C:\Program Files (x86)\IIS Express\' PS C:\Program Files (x86)\IIS Express> .\IisExpressAdminCmd.exe setupsslUrl ...
Get instance of HostedService in ASP.NET API
In ASP.NET Core, you can't directly inject an IHostedService into a controller, as IHostedService is typically designed for background services, not for regular controller actions. However, you can achieve this by injecting the IHostedService through a service...