8244 发表于 2018-7-10 07:07:10

编程实现取出收件箱中新邮件的数量(Exchange 2003)

' Variables  Dim Request As System.Net.HttpWebRequest
  Dim Response As System.Net.HttpWebResponse
  Dim MyCredentialCache As System.Net.CredentialCache
  Dim strServer As String
  Dim strPassword As String
  Dim strDomain As String
  Dim strUserName As String
  Dim strMailboxURI As String
  Dim strQuery As String
  Dim bytes() As Byte
  Dim RequestStream As System.IO.Stream
  Dim ResponseStream As System.IO.Stream
  Dim ResponseXmlDoc As System.Xml.XmlDocument
  Dim HrefNodes As System.Xml.XmlNodeList

  Dim>  Dim iMailboxSize As Integer
页: [1]
查看完整版本: 编程实现取出收件箱中新邮件的数量(Exchange 2003)