Such a nasty issue may happen to everyone: you want to delete the folder, but you can’t, because it is being used by an other process. The following C# code shows how to find this process, which you may want…
Best way to call client methods in a Hub class This is a common way to call a client-side method via SignalR: public class WebHub : Hub { … public async Task SomeMethod(string something) { //Calls CheckItOut method in all…
Common reasons of low performance in .Net Applications Application written on .Net is not CPU executable by its own. The reason is that .Net programm is an assembly on MSIL code. MSIL is a an assembly language (some similar to…
This article is for educational purposes only. What is anti-bot protection? In the context of web-surfing anti-bot protection is a set of methods that can identify request sent by robot and either block response or change it. These methods can…
How to remove unnecessary parts of a content generated by wordpress WordPress CMS addes useless html parts to site content. Removing it lets you to get rid of html trash and hides what is the real cms your site is…
What issues are disccused here: embedding audio player to an html page customizing audio player using css setup of audio player (with extra capabilities) using javascript Is it impossible to customize audio tag (enable styles for a standart html audio…
.Net has System.Speech.Synthesis namespace that contains class to work with text-to-speech synthesizer software. Usually TTS is already installed on Windows machine and can be used in applications. How to use TTS converter in .Net? TTS converter is placed in System.Speech.Synthesis…
There are many possibilities to process graphical information in .Net. Microsoft has Graphics Device Interface for imaging. Its functionality is provided by System.Drawing.Common namespace in .Net Core and Framework. By means of C# imaging it is possible: to create images…
What is HTTP Client? In client-server model Server is the one who handle requests and send responses, Client is the one who send requests and handle responses. Generally speaking, Client is a program, library or a program method that: Sends…