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#
public string FormatUrl(
	string path
)
Visual Basic
Public Function FormatUrl ( 
	path As String
) As String
Visual C++
public:
virtual String^ FormatUrl(
	String^ path
) sealed
F#
abstract FormatUrl : 
        path : string -> string 
override FormatUrl : 
        path : string -> string 

Parameters

path
Type: System..::..String
Full object path.

Return Value

Type: String
Formatted URL.

Implements

IFileContentProvider..::..FormatUrl(String)

See Also