Formats full URL for files managed by a provider. Full URL is very different when a file is using a standard MonoX content provider (usually begins with ~/) when compared to a URL required by services like Amazon S3 (fully qualified URLs starting with http://...)

Namespace: MonoSoftware.MonoX.FileSystem
Assembly: MonoX (in MonoX.dll) Version: 5.1.40.5065 (5.1.40.5065)

Syntax

C#
string FormatUrl(
	string path
)
Visual Basic
Function FormatUrl ( 
	path As String
) As String
Visual C++
String^ FormatUrl(
	String^ path
)
F#
abstract FormatUrl : 
        path : string -> string 

Parameters

path
Type: System..::..String
Folder path.

Return Value

Type: String
Formatted URL.

See Also