Skip to content

Commit

Permalink
시작 api콜 문제 수정
Browse files Browse the repository at this point in the history
ssl코드 추가
  • Loading branch information
hanalen committed Jul 31, 2019
1 parent b775820 commit 4a65f2e
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dalsae/Dalsae/App.xaml.cs
Expand Up @@ -14,6 +14,7 @@
using SharpRaven;
using SharpRaven.Data;
using System.Windows.Threading;
using System.Net;

namespace Dalsae
{
Expand All @@ -24,6 +25,8 @@ public partial class App : Application
{
public App()
{
ServicePointManager.Expect100Continue = true;
ServicePointManager.SecurityProtocol = SecurityProtocolType.Ssl3 | SecurityProtocolType.Tls | SecurityProtocolType.Tls11 | SecurityProtocolType.Tls12;
this.Dispatcher.UnhandledException += Dispatcher_UnhandledException;
this.Dispatcher.UnhandledExceptionFilter += Dispatcher_UnhandledExceptionFilter;
System.AppDomain.CurrentDomain.UnhandledException += CurrentDomain_UnhandledException;
Expand Down

0 comments on commit 4a65f2e

Please sign in to comment.