Archive Browser
Download OutlookEmailAddressExtract.zip version 1.0.0.0, last updated 26/09/2012 (27.15 KB)
Downloadusing System;
using Microsoft.Office.Interop.Outlook;
namespace OutlookEmailAddressExtract
{
internal class MAPIFolderEventArgs
: EventArgs
{
public MAPIFolderEventArgs(MAPIFolder folder, int totalItems, int currentItem)
{
if (folder == null)
throw new ArgumentNullException("folder");
this.Folder = folder;
this.TotalItems = totalItems;
this.CurrentItem = currentItem;
}
protected MAPIFolderEventArgs()
{ }
public int CurrentItem { get; protected set; }
public MAPIFolder Folder { get; protected set; }
public int TotalItems { get; protected set; }
}
}Donate
This software may be used free of charge, but as with all free software there are costs involved to develop and maintain.
If this site or its services have saved you time, please consider a donation to help with running costs and timely updates.
Donate