Uri.UriSchemeFtp Field specifies that the URI is accessed through the File Transfer Protocol (FTP).
Imports System.IO
Imports System.Net
Imports System.Text
publicclass MainClass
Shared Sub Main()
Dim address7 As New Uri("ftp://a.com/files/testfile.txt")
If address7.Scheme = Uri.UriSchemeFtp Then
Console.WriteLine("Uri is Ftp protocol")
End If
End Sub
End Class