EncryptionProvider.EndSession Method

Ends the current encryption session.

Namespace:  Microsoft.Office.Core
Assembly:  office (in office.dll)

Syntax

'Declaration
Sub EndSession ( _
    SessionHandle As Integer _
)
'Usage
Dim instance As EncryptionProvider
Dim SessionHandle As Integer

instance.EndSession(SessionHandle)
void EndSession(
    int SessionHandle
)

Parameters

  • SessionHandle
    Type: System.Int32

    The ID of the current session.

Remarks

During a save operation, the CloneSession(Int32) method is called by your COM add-in to create a second, working copy of the EncryptionProvider object’s encryption session for the file that is about to be saved. Next the Save(Int32, Object) method is called to get whatever custom information you would like to persist about your encryption settings. This information is available when this document is reopened later. Then the EncryptStream(Int32, String, Object, Object) method is called which gives the provider the entire contents of the document. And finally, to complete the process, the EndSession(Int32) method for the cloned session handle.

See Also

Reference

EncryptionProvider Interface

EncryptionProvider Members

Microsoft.Office.Core Namespace