C# Class iwantedue.OutlookStorage.Message

Inheritance: OutlookStorage
Afficher le fichier Open project: Developex/Outlook-Sync-Webservice Class Usage Examples

Méthodes publiques

Méthode Description
Message ( Stream storageStream ) : System

Initializes a new instance of the Message class from a Stream containing an IStorage.

Message ( string msgfile ) : System

Initializes a new instance of the Message class from a msg file.

Save ( Stream stream ) : void

Saves this Message to the specified stream.

Save ( string fileName ) : void

Saves this Message to the specified file name.

Méthodes protégées

Méthode Description
Disposing ( ) : void
LoadStorage ( NativeMethods storage ) : void

Processes sub storages on the specified storage to capture attachment and recipient data.

Private Methods

Méthode Description
LoadAttachmentStorage ( NativeMethods storage ) : void

Loads the attachment data out of the specified storage.

Message ( NativeMethods storage ) : System

Initializes a new instance of the Message class on the specified NativeMethods.IStorage.

Method Details

Disposing() protected méthode

protected Disposing ( ) : void
Résultat void

LoadStorage() protected méthode

Processes sub storages on the specified storage to capture attachment and recipient data.
protected LoadStorage ( NativeMethods storage ) : void
storage NativeMethods The storage to check for attachment and recipient data.
Résultat void

Message() public méthode

Initializes a new instance of the Message class from a Stream containing an IStorage.
public Message ( Stream storageStream ) : System
storageStream Stream The containing an IStorage.
Résultat System

Message() public méthode

Initializes a new instance of the Message class from a msg file.
public Message ( string msgfile ) : System
msgfile string
Résultat System

Save() public méthode

Saves this Message to the specified stream.
public Save ( Stream stream ) : void
stream Stream The stream to save to.
Résultat void

Save() public méthode

Saves this Message to the specified file name.
public Save ( string fileName ) : void
fileName string Name of the file.
Résultat void