SPClaimProviderManager.IBackupRestore.OnBackupComplete method
The event that is called when the system is finished with the backup and restore procedure.
Namespace: Microsoft.SharePoint.Administration.Claims
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
<SharePointPermissionAttribute(SecurityAction.LinkDemand, ObjectModel := True)> _
Private Function OnBackupComplete ( _
sender As Object, _
args As SPBackupInformation _
) As Boolean Implements IBackupRestore.OnBackupComplete
'Usage
Dim instance As SPClaimProviderManager
Dim sender As Object
Dim args As SPBackupInformation
Dim returnValue As Boolean
returnValue = CType(instance, IBackupRestore).OnBackupComplete(sender, _
args)
[SharePointPermissionAttribute(SecurityAction.LinkDemand, ObjectModel = true)]
boolIBackupRestore.OnBackupComplete(
Object sender,
SPBackupInformation args
)
Parameters
sender
Type: System.ObjectThe object that is calling the event.
args
Type: Microsoft.SharePoint.Administration.Backup.SPBackupInformationAn SPBackupRestoreInformation object that contains data about the event.
Return value
Type: System.Boolean
true if the backup was successfully completed; otherwise, false.
Implements
IBackupRestore.OnBackupComplete(Object, SPBackupInformation)