MAPIFolder.Session Property

Definition

Returns the NameSpace object for the current session. Read-only.

C#
public Microsoft.Office.Interop.Outlook.NameSpace Session { get; }

Property Value

Remarks

The Session property and the GetNamespace(String) method can be used interchangeably to obtain the NameSpace object for the current session. Both members serve the same purpose. For example, the following pairs of statements perform the same function:

Dim objNamespace As Outlook.NameSpace = _
    Application.GetNamespace("MAPI")

Dim objSession As Outlook.NameSpace = Application.Session

Outlook.NameSpace objNamespace = 
    Application.GetNamespace("MAPI");

Outlook.NameSpace objSession = Application.Session;

Applies to

Product Versions
Outlook primary interop assembly Latest