Sdílet prostřednictvím


Repository5.Destroy Method

Destroy the subtree represented by itemSpec.

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

Syntax

'Declaration
<WebMethodAttribute> _
Public Function Destroy ( _
    item As ItemSpec, _
    versionSpec As VersionSpec, _
    stopAtSpec As VersionSpec, _
    flags As Integer, _
    maxClientPathLength As Integer, _
    <OutAttribute> ByRef failures As Failure(), _
    <OutAttribute> ByRef pendingChanges As StreamingCollection(Of PendingSet), _
    <OutAttribute> ByRef shelvedChanges As StreamingCollection(Of PendingSet) _
) As Item()
[WebMethodAttribute]
public Item[] Destroy(
    ItemSpec item,
    VersionSpec versionSpec,
    VersionSpec stopAtSpec,
    int flags,
    int maxClientPathLength,
    out Failure[] failures,
    out StreamingCollection<PendingSet> pendingChanges,
    out StreamingCollection<PendingSet> shelvedChanges
)
[WebMethodAttribute]
public:
array<Item^>^ Destroy(
    ItemSpec^ item, 
    VersionSpec^ versionSpec, 
    VersionSpec^ stopAtSpec, 
    int flags, 
    int maxClientPathLength, 
    [OutAttribute] array<Failure^>^% failures, 
    [OutAttribute] StreamingCollection<PendingSet^>^% pendingChanges, 
    [OutAttribute] StreamingCollection<PendingSet^>^% shelvedChanges
)
[<WebMethodAttribute>]
member Destroy : 
        item:ItemSpec * 
        versionSpec:VersionSpec * 
        stopAtSpec:VersionSpec * 
        flags:int * 
        maxClientPathLength:int * 
        failures:Failure[] byref * 
        pendingChanges:StreamingCollection<PendingSet> byref * 
        shelvedChanges:StreamingCollection<PendingSet> byref -> Item[] 
public function Destroy(
    item : ItemSpec, 
    versionSpec : VersionSpec, 
    stopAtSpec : VersionSpec, 
    flags : int, 
    maxClientPathLength : int, 
    failures : Failure[], 
    pendingChanges : StreamingCollection<PendingSet>, 
    shelvedChanges : StreamingCollection<PendingSet>
) : Item[]

Parameters

  • flags
    Type: System.Int32

    The set of destroy options KeepHistory: If set to true this means that destroy only removes the content of every version of a file up to but not including the changeset represented by stopAt Force: If set to true this means that destroy will asynchronously kick off content garbage collection Preview: If set to true no database data will actually be deleted, only the list of items that would have been destroyed are returned.

  • maxClientPathLength
    Type: System.Int32

    The maximum client supported server path length.

Return Value

Type: array<Microsoft.TeamFoundation.VersionControl.Server.Item[]
The list of items that were destroyed.

.NET Framework Security

See Also

Reference

Repository5 Class

Microsoft.TeamFoundation.VersionControl.Server Namespace