Share via


_Accounts.Session Property

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

Namespace:  Microsoft.Office.Interop.Outlook
Assembly:  Microsoft.Office.Interop.Outlook (in Microsoft.Office.Interop.Outlook.dll)

Syntax

'Declaration
ReadOnly Property Session As NameSpace
    Get
'Usage
Dim instance As _Accounts
Dim value As NameSpace

value = instance.Session
NameSpace Session { get; }

Property Value

Type: Microsoft.Office.Interop.Outlook.NameSpace

Remarks

Returns Nothing (a null reference (Nothing in Visual Basic) in C#) if there is no logged-on session.

The Session property and the GetNamespace 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;

See Also

Reference

_Accounts Interface

_Accounts Members

Microsoft.Office.Interop.Outlook Namespace