Compartilhar via


IBackupRestoreTreeFormatter.PreObject method

Formata uma cadeia de caracteres que será exibido antes do nome do componente no nó atual.

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

Syntax

'Declaração
Function PreObject ( _
    obj As SPBackupRestoreObject, _
    depth As Integer _
) As String
'Uso
Dim instance As IBackupRestoreTreeFormatter
Dim obj As SPBackupRestoreObject
Dim depth As Integer
Dim returnValue As String

returnValue = instance.PreObject(obj, _
    depth)
string PreObject(
    SPBackupRestoreObject obj,
    int depth
)

Parâmetros

  • depth
    Type: System.Int32

    A profundidade na árvore do nó atual.

Valor retornado

Type: System.String
Um String que será exibido na árvore antes de cada nome de componente.

Comentários

Normalmente, o PreObject é usado para recuar um nome de objeto.

Examples

O seguinte código mostra e implementação de PreObject.

public String PreObject(SPBackupRestoreObject obj, int depth)
{
    StringBuilder buffer = new StringBuilder();

    AppendSpaces(buffer, depth);

    return buffer.ToString();
}
Public Function PreObject(ByVal obj As SPBackupRestoreObject, ByVal depth As Integer) As String
    Dim buffer As New StringBuilder()

    AppendSpaces(buffer, depth)

    Return buffer.ToString()
End Function

Ver também

Referência

IBackupRestoreTreeFormatter interface

IBackupRestoreTreeFormatter members

Microsoft.SharePoint.Administration.Backup namespace