SPSolutionCollection.IBackupRestore.OnPreRestore Method
The event that is called when the system is preparing a restore operation.
Namespace: Microsoft.SharePoint.Administration
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Available in Sandboxed Solutions: No
Syntax
'Declaration
Private Function OnPreRestore ( _
sender As Object, _
info As SPRestoreInformation _
) As Boolean Implements IBackupRestore.OnPreRestore
'Usage
Dim instance As SPSolutionCollection
Dim sender As Object
Dim info As SPRestoreInformation
Dim returnValue As Boolean
returnValue = CType(instance, IBackupRestore).OnPreRestore(sender, _
info)
boolIBackupRestore.OnPreRestore(
Object sender,
SPRestoreInformation info
)
Parameters
sender
Type: System.ObjectThe object that is calling this event.
info
Type: Microsoft.SharePoint.Administration.Backup.SPRestoreInformationThe restore information for the solution collection.
Return Value
Type: System.Boolean
Returns true if the restore is prepared successfully; otherwise, false.
Implements
IBackupRestore.OnPreRestore(Object, SPRestoreInformation)
Remarks
This function should not be called by anything except the backup and restore process.