Share via


SPBackupRestoreObject.Information Property

Gets an object that holds information about a backup up or restore operation that is currently underway for the component represented by the SPBackupRestoreObject.

Namespace:  Microsoft.SharePoint.Administration.Backup
Assembly:  Microsoft.SharePoint (in Microsoft.SharePoint.dll)

Syntax

Public ReadOnly Property Information As SPBackupRestoreInformation
    Get

Dim instance As SPBackupRestoreObject
Dim value As SPBackupRestoreInformation

value = instance.Information
public SPBackupRestoreInformation Information { get; }

Property Value

Type: Microsoft.SharePoint.Administration.Backup.SPBackupRestoreInformation
A SPBackupRestoreInformation (always either an SPBackupInformation or an SPRestoreInformation) that holds information that is needed by an operation's SPBackupRestoreConsoleObject to backup or restore the component.

Examples

The following example shows how to use the Information property in an implementation of the AddBackupObjects method.

public void AddBackupObjects(SPBackupRestoreObject parent)
{
    if (parent == null)
    {
        throw new ArgumentNullException("parent");
    }

    SPBackupRestoreObject self = parent.AddChild(this);
    self.Information.SetParameter(SPBackupRestoreObject.SPTypeName, this.GetType());
    self.Information.SetParameter(SPBackupRestoreObject.SPDescription, "Description of custom content component");

....foreach (ChildContent child in ChildContentCollection)
    {
        IBackupRestore childIBR = child as IBackupRestore;
        childIBR.AddBackupObjects(self);
    }
}

See Also

Reference

SPBackupRestoreObject Class

SPBackupRestoreObject Members

Microsoft.SharePoint.Administration.Backup Namespace