Anteckning
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Parses a versioned file specification string of the form "filename;version" or "filename;version;deletionID".
Namespace:  Microsoft.TeamFoundation.VersionControl.Client
Assembly:  Microsoft.TeamFoundation.VersionControl.Client (in Microsoft.TeamFoundation.VersionControl.Client.dll)
Syntax
'Declaration
Public Shared Sub ParseVersionedFileSpec ( _
    spec As String, _
    user As String, _
    <OutAttribute> ByRef deletionId As Integer, _
    <OutAttribute> ByRef fileName As String, _
    <OutAttribute> ByRef versions As VersionSpec() _
)
public static void ParseVersionedFileSpec(
    string spec,
    string user,
    out int deletionId,
    out string fileName,
    out VersionSpec[] versions
)
public:
static void ParseVersionedFileSpec(
    String^ spec, 
    String^ user, 
    [OutAttribute] int% deletionId, 
    [OutAttribute] String^% fileName, 
    [OutAttribute] array<VersionSpec^>^% versions
)
static member ParseVersionedFileSpec : 
        spec:string * 
        user:string * 
        deletionId:int byref * 
        fileName:string byref * 
        versions:VersionSpec[] byref -> unit
public static function ParseVersionedFileSpec(
    spec : String, 
    user : String, 
    deletionId : int, 
    fileName : String, 
    versions : VersionSpec[]
)
Parameters
spec
Type: System.StringThe versioned file specification to parse.
user
Type: System.StringThe current user.
deletionId
Type: System.Int32%The parsed deletion ID.
fileName
Type: System.String%The parsed file name.
versions
Type: array<Microsoft.TeamFoundation.VersionControl.Client.VersionSpec[]%The parsed VersionSpec array.
.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.