C# Class iwantedue.OutlookStorage.Message

Inheritance: OutlookStorage
Exibir arquivo Open project: Developex/Outlook-Sync-Webservice Class Usage Examples

Public Methods

Method 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.

Protected Methods

Method Description
Disposing ( ) : void
LoadStorage ( NativeMethods storage ) : void

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

Private Methods

Method 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 method

protected Disposing ( ) : void
return void

LoadStorage() protected method

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.
return void

Message() public method

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.
return System

Message() public method

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

Save() public method

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

Save() public method

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