SavedCheckin.UpdateCheckinItems Method
Updates the items that are associated with the specified pending changes and states.
Namespace: Microsoft.TeamFoundation.VersionControl.Client
Assembly: Microsoft.TeamFoundation.VersionControl.Client (in Microsoft.TeamFoundation.VersionControl.Client.dll)
Syntax
'Declaration
Public Sub UpdateCheckinItems ( _
checkedPendingChanges As PendingChange(), _
uncheckedPendingChanges As PendingChange() _
)
public void UpdateCheckinItems(
PendingChange[] checkedPendingChanges,
PendingChange[] uncheckedPendingChanges
)
public:
void UpdateCheckinItems(
array<PendingChange^>^ checkedPendingChanges,
array<PendingChange^>^ uncheckedPendingChanges
)
member UpdateCheckinItems :
checkedPendingChanges:PendingChange[] *
uncheckedPendingChanges:PendingChange[] -> unit
public function UpdateCheckinItems(
checkedPendingChanges : PendingChange[],
uncheckedPendingChanges : PendingChange[]
)
Parameters
checkedPendingChanges
Type: array<Microsoft.TeamFoundation.VersionControl.Client.PendingChange[]The array of checked pending changes to merge with the overall set of checked items.
uncheckedPendingChanges
Type: array<Microsoft.TeamFoundation.VersionControl.Client.PendingChange[]The array of unchecked pending changes to remove from the overall set of checked items.
Remarks
The specified pending changes may be a filtered subset of the overall set of pending changes.
Therefore, these specified lists do not replace the list of pending changes of this saved check-in.
Instead, this method makes sure that the specified checked pending changes are in this saved check-in and the unchecked pending changes do not.
.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.