Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Schedules a file or folder for branching.
Namespace: Microsoft.TeamFoundation.VersionControl.Client
Assembly: Microsoft.TeamFoundation.VersionControl.Client (in Microsoft.TeamFoundation.VersionControl.Client.dll)
Syntax
'Declaration
Public Function PendBranch ( _
sourcePath As String, _
targetPath As String, _
version As VersionSpec, _
lockLevel As LockLevel, _
updateDisk As Boolean, _
detectFolderAtTarget As Boolean, _
silent As Boolean _
) As Integer
public int PendBranch(
string sourcePath,
string targetPath,
VersionSpec version,
LockLevel lockLevel,
bool updateDisk,
bool detectFolderAtTarget,
bool silent
)
public:
int PendBranch(
String^ sourcePath,
String^ targetPath,
VersionSpec^ version,
LockLevel lockLevel,
bool updateDisk,
bool detectFolderAtTarget,
bool silent
)
member PendBranch :
sourcePath:string *
targetPath:string *
version:VersionSpec *
lockLevel:LockLevel *
updateDisk:bool *
detectFolderAtTarget:bool *
silent:bool -> int
public function PendBranch(
sourcePath : String,
targetPath : String,
version : VersionSpec,
lockLevel : LockLevel,
updateDisk : boolean,
detectFolderAtTarget : boolean,
silent : boolean
) : int
Parameters
sourcePath
Type: System.StringThe path of the item to branch.
targetPath
Type: System.StringThe location of the branch that will be created.
version
Type: Microsoft.TeamFoundation.VersionControl.Client.VersionSpecThe version of the source item to branch.
lockLevel
Type: Microsoft.TeamFoundation.VersionControl.Client.LockLevelThe lock level to apply to each branched item.
updateDisk
Type: System.BooleanTrue to populate the branch on the local disk. Otherwise, the disk is not modified.
detectFolderAtTarget
Type: System.BooleanTrue to look for a local folder that exists at the target and then notify the server. False not to search.
silent
Type: System.BooleanSpecifies whether the server should return Get operations.
Return Value
Type: System.Int32
The number of pending changes.
Remarks
Branching a folder is implicitly recursive.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.