일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- logging
- Process
- tls
- string
- nullable
- convert
- Coding
- File
- windows
- coding-test
- .net
- ListView
- Visual Studio
- mysql
- IValueConverter
- commit
- log
- 코딩테스트
- programmers
- git
- C#
- dotNET
- Github
- chashtag
- csharp
- windows10
- WPF
- Binding
- Microsoft
- algorithm
Archives
- Today
- Total
CHashtag
[C#] .net 4.0 기본 연결이 닫혔습니다. (tls 1.2) (https) 본문
반응형
기본적으로 .net framework 4.0에서는 tls 1.2가 지원되지 않아 https요청을 보내면
"기본 연결이 닫혔습니다 보내기에서 예기치 않은 오류가 발생했습니다." 라는 에러가 발생합니다.
이때 .net framework 버전을 4.5.2로 올려도 되지만 버전을 올릴 수 없을 경우 해결방법을 알려드리도록 하겠습니다.
아래의 함수를 선언한 뒤 프로그램이 시작 시 한번 호출해주면 해결됩니다.
public void SetTls()
{
bool platformSupportsTls12 = false;
foreach (SecurityProtocolType protocol in Enum.GetValues(typeof(SecurityProtocolType)))
{
if (protocol.GetHashCode() == 3072)
{
platformSupportsTls12 = true;
}
}
// enable Tls12, if possible
if (!ServicePointManager.SecurityProtocol.HasFlag((SecurityProtocolType)3072))
{
if (platformSupportsTls12)
{
ServicePointManager.SecurityProtocol |= (SecurityProtocolType)3072;
}
}
}
감사합니다.
반응형
'C#' 카테고리의 다른 글
[C#] 파일 확장자로 mime-type 구하기(File Extension) (0) | 2021.05.24 |
---|---|
[C#] 배포 exe 경로 dll 폴더 분리하기 (probing) (privatePath) (2) | 2021.05.11 |
[C#] Visual Studio 빌드시 pdb 파일 안나오게 하는법(or 나오게 하는법) (0) | 2021.05.07 |
[C#] 코딩 규칙 (Coding Convention) (0) | 2021.05.06 |
[C#] parse string to enum 대소문자 무시 (ignore case) (0) | 2021.03.02 |