Replacement for JDIS Importer
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
291 B

  1. using System;
  2. using Microsoft.Exchange.WebServices.Data;
  3. namespace jdis_import
  4. {
  5. class Program
  6. {
  7. static void Main(string[] args)
  8. {
  9. int i = (int)System.Net.SecurityProtocolType.Tls12;
  10. Console.WriteLine(i);
  11. }
  12. }
  13. }