Uri.UriSchemeFtp 欄位
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
指定 URI 要透過檔案傳輸通訊協定 (File Transfer Protocol,FTP) 存取。 此欄位為唯讀。
public: static initonly System::String ^ UriSchemeFtp;
public static readonly string UriSchemeFtp;
staticval mutable UriSchemeFtp : string
Public Shared ReadOnly UriSchemeFtp As String
欄位值
範例
下列範例會 Uri 建立 實例,並判斷配置是否為 UriSchemeFtp 。
Uri^ address7 = gcnew Uri( "ftp://contoso/files/testfile.txt" );
if ( address7->Scheme == Uri::UriSchemeFtp )
{
Console::WriteLine( "Uri is Ftp protocol" );
}
Uri address7 = new Uri("ftp://contoso/files/testfile.txt");
if (address7.Scheme == Uri.UriSchemeFtp)
Console.WriteLine("Uri is Ftp protocol");
let address7 = Uri "ftp://contoso/files/testfile.txt"
if address7.Scheme = Uri.UriSchemeFtp then
printfn "Uri is Ftp protocol"
Dim address7 As New Uri("ftp://contoso/files/testfile.txt")
If address7.Scheme = Uri.UriSchemeFtp Then
Console.WriteLine("Uri is Ftp protocol")
End If