Conversation.Session Property (Outlook)
Returns the NameSpace object for the current session. Read-only.
Version Information
Version Added: Outlook 2010
Syntax
expression .Session
expression A variable that represents a Conversation object.
Remarks
This property returns Null (Nothing in Visual Basic) if there is no logged-on session.
You can use the Session property and the GetNamespace method interchangeably to obtain the NameSpace object for the current session. Both members serve the same purpose. For example, the following statements perform the same function:
Set objNamespace = Application.GetNamespace("MAPI")
Set objSession = Application.Session