csharp 例如-CSHARP-GroupDocs.Text.Examples.CSharp-ContainerExtractor-RetrieveEmailsUsingEntity.cs

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了csharp 例如-CSHARP-GroupDocs.Text.Examples.CSharp-ContainerExtractor-RetrieveEmailsUsingEntity.cs相关的知识,希望对你有一定的参考价值。

// Create connection info
var info = EmailConnectionInfo.CreateEwsConnectionInfo(@"https://outlook.office365.com/ews/exchange.asmx", "username", "password");
// Create an email container
using (var container = new EmailContainer(info))
{
    // Iterate over emails
    foreach (var entity in container.Entities)
    {
        Console.WriteLine("Folder: " + entity.Path.ToString()); // A folder at server
        Console.WriteLine("Subject: " + entity[MetadataNames.Subject]); // A subject of email
        Console.WriteLine("From: " + entity[MetadataNames.EmailFrom]); // "From" address
        Console.WriteLine("To: " + entity[MetadataNames.EmailTo]); // "To" addresses  
        //supported in version 17.10
        Console.WriteLine("Date: "+ entity.Date);
        Console.WriteLine("Size: "+ entity.Size);
    }
}

以上是关于csharp 例如-CSHARP-GroupDocs.Text.Examples.CSharp-ContainerExtractor-RetrieveEmailsUsingEntity.cs的主要内容,如果未能解决你的问题,请参考以下文章

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,AddDocumentToIndex.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,AddDocumentToIndexAsynchronously.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CreateIndexInMemory.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CreateIndexOnDisk.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CreateWithOverwritingExistedIndex.cs

csharp 例如-CSHARP-GroupDocs.Search.Examples.CSharp索引,CustomExtractor.cs