VersionControlPath.GetFullPath Method (String)
Canonicalizes the specified items specification and return the string. This will do things such as remove ..'s, convert \ to /, and so on. It throws an InvalidPathException if the item is the empty string, contains invalid characters including an embedded dollar sign (wildcard characters are not considered invalid 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 _
) As String
public static string GetFullPath(
string item
)
public:
static String^ GetFullPath(
String^ item
)
static member GetFullPath :
item:string -> string
public static function GetFullPath(
item : String
) : String
Parameters
item
Type: System.StringItem specification to canonicalize.
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.