Creates an FTP url from the given path parts.

Namespace: W3CValidationTasks
Assembly: W3CValidationTasks (in W3CValidationTasks.dll) Version: 1.1.1.40

Collapse imageSyntax

C#
protected string GetFtpUrl(
	params string[] parts
)
Visual Basic
Protected Function GetFtpUrl ( _
	ParamArray parts As String() _
) As String
Visual C++
protected:
String^ GetFtpUrl(
	... array<String^>^ parts
)

Parameters

parts
Type: array<System..::..String>[]()[][]
A collection of path parts.

Return Value

An FTP url

Collapse imageExamples

If parts contains "myhost.com", "photo.jpg" then this method returns ftp://myhost.com/photo.jpg

Collapse imageSee Also