BrainBeast

Hunt down knowledge with our help

Programming

signalr

FAQs about SignalR

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…

FAQ about WordPress CMS

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…

Customizable audio player for webpages

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…

tts

FAQ about .Net Text to Speech converter

.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…

image

Imaging on C#

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…

client-server

FAQ about HTTP Client with examples

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…