"Microsoft Exchange Server"의 두 판 사이의 차이

 
19번째 줄: 19번째 줄:
 
=== Ignore EWS Certification Error ===
 
=== Ignore EWS Certification Error ===
  
<syntaxhighlight lang="csharp" title="C#">ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) => true;</syntaxhighlight>
+
<syntaxhighlight lang="csharp" title="C#" line>ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) => true;</syntaxhighlight>
  
 
=Exchange Management Console=
 
=Exchange Management Console=

2022년 3월 8일 (화) 15:08 기준 최신판

Development with Exchange

Working with Exchange Web Service(EWS)

Exchange Web Service를 사용하는 예제.

Working with E-Mail Message

EWS를 통해 메세지를 생성하고 전송하는 예제.

관련 사이트

Ignore EWS Certification Error

1ServicePointManager.ServerCertificateValidationCallback += (sender, cert, chain, sslPolicyErrors) => true;

Exchange Management Console

MailBox 관련

MailBox 정보

Get-MailBox -Server ExchangeServerName | Select-Object *

MailBox 사용 현황

Get-MailboxStatistics -Server ExchangeServerName | Select-Object *

참조사이트