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
item
Type: System.StringItem specification to canonicalize.
- maxPathLength
Type: Microsoft.TeamFoundation.VersionControl.Common.PathLength
Return Value
Type: System.String
Canonical string form of the item.
.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.