_StorageItem.Session Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the NameSpace object for the current session. Read-only.
public:
property Microsoft::Office::Interop::Outlook::NameSpace ^ Session { Microsoft::Office::Interop::Outlook::NameSpace ^ get(); };
public Microsoft.Office.Interop.Outlook.NameSpace Session { get; }
Public ReadOnly Property Session As NameSpace
Property Value
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(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;