Sometimes our software that bases on HttpClient class requests has problem with connecting to services (AZURE or other portals) or REST API functions to https addresses (SSL). We’ve got error: “Error The request was aborted: The request was canceled.” and our connection is rejected at once. That can means that we should verify settings for TLS […]
Read More[SOLVED] C# & HttpClient for SSL/TLS: Error The request was aborted: The request was canceled.
If You have a code signing certificate issued to you by a commercial CA and unfortunately, the Visual Studio ClickOnce manifest code signing tool only supports the older CSP/CrytoAPI keys for signing these manifests or return during publishing the error: “An error occurred while signing: Invalid provider type specified, then to solve problem You have […]
Read More[Solved] Visual Studio – “Invalid provider type specified” CryptographicException when trying to load private key of certificate
At the last time I’ve found perfect function which will help to remove all HTML tags, scripts, css, styles from html string and convert it to a plain text. using System.Text.RegularExpressions; private string GetPlainTextFromHtml(string htmlString) { string htmlTagPattern = “<.*?>”; var regexCss = new Regex(“(\\<script(.+?)\\)|(\\<style(.+?)\\)”, RegexOptions.Singleline | RegexOptions.IgnoreCase); htmlString = regexCss.Replace(htmlString, string.Empty); htmlString = Regex.Replace(htmlString, […]
Read MoreSolved: C# How Get Plain Text from HTML String
How split single text with delimiter or multiline from column/cell into multiple rows? In case of massive data, the performance is very important and has high priority, so we focus on solution which we can use in production environment. The solution bases on created function on MS SQL server, presented below on attached screen: CREATE FUNCTION […]
Read MoreSOLVED: Massive Data – How split single text with delimiter or multiline from column/cell into multiple rows
Sometimes after moving Source code of Visual project from one machine to another we receive error during compilation “Unable to find manifest signing certificate in the certificate store”. This error is related with the very important warning “Found conflicts between different versions of the same depenant assembly” – and this is key to solve […]
Read MoreSolved – Visual Studio and error “Unable to find manifest signing certificate in the certificate store”
This website uses cookies so that we can provide you with the best user experience possible. Cookie information is stored in your browser and performs functions such as recognising you when you return to our website and helping our team to understand which sections of the website you find most interesting and useful.
Strictly Necessary Cookies
Strictly Necessary Cookie should be enabled at all times so that we can save your preferences for cookie settings.
If you disable this cookie, we will not be able to save your preferences. This means that every time you visit this website you will need to enable or disable cookies again.