TeamFoundationVersionControlService.PendChanges Method (TeamFoundationRequestContext, String, String, array<ChangeRequest[], Int32, Int32, array<String[], array<String , Boolean)

Called to perform adds, checkouts, branches, renames, deletes, and so on.

Changes submitted may contain wildcard characters and recursion flags. Wildcards and recursions will be expanded and the list of changes successfully pended will be returned.

Namespace:  Microsoft.TeamFoundation.VersionControl.Server
Assembly:  Microsoft.TeamFoundation.VersionControl.Server (in Microsoft.TeamFoundation.VersionControl.Server.dll)

Syntax

'Declaration
Public Function PendChanges ( _
    requestContext As TeamFoundationRequestContext, _
    workspaceName As String, _
    ownerName As String, _
    changes As ChangeRequest(), _
    pendChangesOptions As Integer, _
    supportedFeatures As Integer, _
    itemPropertyFilters As String(), _
    itemAttributeFilters As String(), _
    allowLocalWorkspace As Boolean _
) As TeamFoundationDataReader
public TeamFoundationDataReader PendChanges(
    TeamFoundationRequestContext requestContext,
    string workspaceName,
    string ownerName,
    ChangeRequest[] changes,
    int pendChangesOptions,
    int supportedFeatures,
    string[] itemPropertyFilters,
    string[] itemAttributeFilters,
    bool allowLocalWorkspace
)
public:
TeamFoundationDataReader^ PendChanges(
    TeamFoundationRequestContext^ requestContext, 
    String^ workspaceName, 
    String^ ownerName, 
    array<ChangeRequest^>^ changes, 
    int pendChangesOptions, 
    int supportedFeatures, 
    array<String^>^ itemPropertyFilters, 
    array<String^>^ itemAttributeFilters, 
    bool allowLocalWorkspace
)
member PendChanges : 
        requestContext:TeamFoundationRequestContext * 
        workspaceName:string * 
        ownerName:string * 
        changes:ChangeRequest[] * 
        pendChangesOptions:int * 
        supportedFeatures:int * 
        itemPropertyFilters:string[] * 
        itemAttributeFilters:string[] * 
        allowLocalWorkspace:bool -> TeamFoundationDataReader
public function PendChanges(
    requestContext : TeamFoundationRequestContext, 
    workspaceName : String, 
    ownerName : String, 
    changes : ChangeRequest[], 
    pendChangesOptions : int, 
    supportedFeatures : int, 
    itemPropertyFilters : String[], 
    itemAttributeFilters : String[], 
    allowLocalWorkspace : boolean
) : TeamFoundationDataReader

Parameters

  • workspaceName
    Type: System.String

    Name of workspace to pend changes against.

  • ownerName
    Type: System.String

    Owner of workspace to pend changes against (including domain).

  • pendChangesOptions
    Type: System.Int32

    The set of PendChanges options (integer representation of PendChangeOptions enum) GetLatestOnCheckout: For pending edits, first synchronize the client to the latest version of the item by returning GetOps that indicate the client should perform a download.

  • supportedFeatures
    Type: System.Int32

    The features supported by the client, an int which contains the combined values of the SupportedFeatures enumeration.

  • itemAttributeFilters
    Type: array<System.String[]

    List of properties to return with get operations.

  • allowLocalWorkspace
    Type: System.Boolean

    True to allow the operation to continue on a local workspace. By default calling PendChanges on a local workspace is not allowed.

Return Value

Type: Microsoft.TeamFoundation.Framework.Server.TeamFoundationDataReader
TeamFoundationDataReader with results in the following order: GetOperation[] - Array of GetOperation objects describing changes successfully made. Failure[] - List of failures encountered when pending changes.

.NET Framework Security

See Also

Reference

TeamFoundationVersionControlService Class

PendChanges Overload

Microsoft.TeamFoundation.VersionControl.Server Namespace