Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

an existing connection was forcibly closed by the remote host. .net core

// If you face error while making inter service call in .net framework. (WEB API 2.0)
// user the below code before making an inter service call

ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;

// if want to use existing security protocols with new protocols
ServicePointManager.SecurityProtocol |= SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
Comment

PREVIOUS NEXT
Code Example
Csharp :: How to make game object transparent in unity 
Csharp :: .net mvc return a specific View 
Csharp :: how to check if List<T element contains an item with a Particular Property Value in c# 
Csharp :: asp.net mvc get current url in view 
Csharp :: c# round number up 
Csharp :: mongodb driver c# nuget 
Csharp :: c# excel workbook 
Csharp :: get file path in .net core from wwwroot folder 
Csharp :: how do you make a 2D object follow another 2D object in unity 2D 
Csharp :: if checkbox checked in c# 
Csharp :: c# combobox add item 
Csharp :: save image in c# 
Csharp :: c# streamwriter add new line 
Csharp :: linq when name then orderby 
Csharp :: c# list.foreach 
Csharp :: how to insert into a list c# 
Csharp :: c# code skripte kommunizieren 
Csharp :: published net core did not have wwwroot 
Csharp :: deserialize json to dynamic object c# 
Csharp :: input field to float unity 
Csharp :: c# get logged on user name 
Csharp :: c# type of string 
Csharp :: c# substring until character single 
Csharp :: C# compare date values 
Csharp :: how to uncheck a radio button in c# 
Csharp :: c# loop through datatable and update 
Csharp :: c# loop string 
Csharp :: unity reflect raycast 
Csharp :: update table in C# 
Csharp :: convert string to decimal c# 
ADD CONTENT
Topic
Content
Source link
Name
3+8 =