SPDiagnosticsServiceBase.OnPostRestore method
Raises the PostRestore event.
Namespace: Microsoft.SharePoint.Administration
Assembly: Microsoft.SharePoint (in Microsoft.SharePoint.dll)
Syntax
'Declaration
Public Overridable Function OnPostRestore ( _
sender As Object, _
info As SPRestoreInformation _
) As Boolean
'Usage
Dim instance As SPDiagnosticsServiceBase
Dim sender As Object
Dim info As SPRestoreInformation
Dim returnValue As Boolean
returnValue = instance.OnPostRestore(sender, _
info)
public virtual bool OnPostRestore(
Object sender,
SPRestoreInformation info
)
Parameters
sender
Type: System.ObjectThe object that represents the SPDiagnosticsServiceBase that is being restored.
info
Type: Microsoft.SharePoint.Administration.Backup.SPRestoreInformationAn SPRestoreInformation object that contains data about the event.
Return value
Type: System.Boolean
true if successful; otherwise, false.
Implements
IBackupRestore.OnPostRestore(Object, SPRestoreInformation)
Remarks
This implementation always returns true.
This method is only intended to be called from catastrophic backup and restore infrastructure code in SharePoint Foundation.
See also
Reference
SPDiagnosticsServiceBase class