Share via


VersionControlPath.GetFullPath Method (String, PathLength)

Canonicalizes the specified items specification and return the string. This will do things like remove ..'s, convert \ to /, etc. It throws an InvalidPathException if the item is the empty string, contains invalid characters including an embedded dollar sign (wildcards are not considered illegal in this check), or is too long.

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

Syntax

'Declaration
Public Shared Function GetFullPath ( _
    item As String, _
    maxPathLength As PathLength _
) As String
public static string GetFullPath(
    string item,
    PathLength maxPathLength
)
public:
static String^ GetFullPath(
    String^ item, 
    PathLength maxPathLength
)
static member GetFullPath : 
        item:string * 
        maxPathLength:PathLength -> string
public static function GetFullPath(
    item : String, 
    maxPathLength : PathLength
) : String

Parameters

Return Value

Type: System.String
Canonical string form of the item.

.NET Framework Security

See Also

Reference

VersionControlPath Class

GetFullPath Overload

Microsoft.TeamFoundation.VersionControl.Common Namespace