VirtualPathUtility.RemoveTrailingSlash Method

Note: This method is new in the .NET Framework version 2.0.

Removes a trailing slash mark (/) from a virtual path.

Namespace: System.Web
Assembly: System.Web (in system.web.dll)

public:
static String^ RemoveTrailingSlash (
	String^ virtualPath
)
public static String RemoveTrailingSlash (
	String virtualPath
)
public static function RemoveTrailingSlash (
	virtualPath : String
) : String

Parameters

virtualPath

The virtual path to remove any trailing slash mark from.

Return Value

A virtual path without a trailing slash mark, if the virtual path is not already the root directory ("/"); otherwise, a null reference (Nothing in Visual Basic).

The RemoveTrailingSlash method removes a slash mark (/) from the end of the virtual path. If the virtual path is already the root directory ("/"), no action is taken. If the virtual path is a null reference (Nothing in Visual Basic) or an empty string (""), the RemoveTrailingSlash method returns a null reference (Nothing in Visual Basic).

Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0

Community Additions

ADD
Show: