Horje
an existing connection was forcibly closed by the remote host. .net core Code Example
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;




Csharp

Related
c# Get all class by namespace Code Example c# Get all class by namespace Code Example
unity get game version Code Example unity get game version Code Example
C# enum Code Example C# enum Code Example
find month number from date C# Code Example find month number from date C# Code Example
httpcontext in .net standard Code Example httpcontext in .net standard Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10