@msdn=http://search.microsoft.com/search/results.aspx?qu=$$$ @pinvoke=http://pinvoke.net/$$$.htm Summary: MAPILogoff - The MAPILogoff function ends a session with the messaging system. !!!!C# Signature: /// <summary> /// The MAPILogoff function ends a session with the messaging system. /// </summary> [DllImport("MAPI32.DLL", CharSet=CharSet.Ansi)] private static extern uint MAPILogoff(IntPtr lhSession, IntPtr ulUIParam, uint flFlags, uint ulReserved); !!!!VB Signature: ''' <summary> ''' The MAPILogoff function ends a session with the messaging system. ''' </summary> <DllImport("MAPI32.DLL", CharSet:=CharSet.Ansi)> _ Private Shared Function MAPILogoff(ByVal lhSession As IntPtr, ByVal ulUIParam As IntPtr, ByVal flFlags As UInteger, ByVal ulReserved As UInteger) As UInteger End Function !!!!User-Defined Structures: None. !!!!User-Defined Constants: [MAPI] !!!!Notes: None. !!!!Tips & Tricks: Please add some! !!!!C# Sample Code: public void Logoff() { if(sessionPtr != IntPtr.Zero ) { errorCode = MAPILogoff( session, parentWindowPtr , 0, 0 ); sessionPtr = IntPtr.Zero; } } !!!!VB.NET Sample Code: Public Sub Logoff() If sessionPtr <> IntPtr.Zero Then errorCode = MAPILogoff(session, parentWindowPtr, 0, 0) sessionPtr = IntPtr.Zero End If End Sub !!!!Alternative Managed API: Do you know one? Please contribute it! Documentation: MAPILogoff@msdn on MSDN
Edit mapi32.MAPILogoff
You do not have permission to change this page. If you feel this is in error, please send feedback with the contact link on the main page.