ComponentPro UltimateFtp

      GetSupportedChecksumTypes Method

      See AlsoMembers Options: Show AllLanguage Filter: AllSend comments on this topic to ComponentPro
      Returns checksum types supported by the server.

      Syntax

      public override FileChecksumType[] GetSupportedChecksumTypes()

      Return Value

      Checksum types supported by the server.

      Examples

      Shows how to use GetFileChecksum and CalculateLocalChecksum methods to get checksum returned from the server and calculate checksum of a local file.

      using System;
      using System.Collections.Generic;
      using System.Text;
      using ComponentPro.IO;
      using ComponentPro.Net;
      
      ...
      
      // Create a new class instance.
      Ftp client = new Ftp();
      
      // Connect to the FTP server.
      client.Connect("myserver");
      
      // Or you can specify the FTP port with 
      // client.Connect("myserver", 21); 
       
      // Authenticate.
      client.Authenticate("userName", "password");
      
      FileChecksumType[] supportedChecksumTypes = client.GetSupportedChecksumTypes();
      
      if (supportedChecksumTypes.Length == 0)
      {
          // Show error and exit. 
          Console.WriteLine("No checksum algorithm supported by the server.");
          client.Disconnect();
          return;
      }
      // Upload the file. 
      const string remoteFile = "/my remote file.dat";
      const string localFile = "my local file";
      
      long transferred = client.UploadFile(localFile, remoteFile);
      Console.WriteLine("Bytes transferred: " + transferred);
      
      // Get remote checksum 
      // Suppose the server support at least one algorithm. 
      string remoteChecksum = client.GetFileChecksum(supportedChecksumTypes[0], remoteFile);
      Console.WriteLine("Remote checksum: " + remoteChecksum);
      
      // Get local checksum 
      string localChecksum = DiskFileSystem.CalculateLocalChecksum(supportedChecksumTypes[0], localFile);
      Console.WriteLine("Local checksum: " + localChecksum);
      
      if (localChecksum == remoteChecksum)
      {
          Console.WriteLine("File uploaded successfully. {0} checked.", supportedChecksumTypes[0]);
      }
      else
      {
          Console.WriteLine("File uploaded successfully. {0} not matched.", supportedChecksumTypes[0]);
      }
      
      // Disconnect.
      client.Disconnect();

      Framework

      .NET Compact Framework.NET Compact Framework

      Supported version: 2.0, 3.5, and 3.9
      Assembly: ComponentPro.Ftp.CF (in ComponentPro.Ftp.CF.dll)

      .NET Framework.NET Framework

      Supported version: 2.0, 3.0, 3.5, 4.0, 4.5.x, 4.6.x and later
      Assembly: ComponentPro.Ftp (in ComponentPro.Ftp.dll)

      Portable Class Library for Windows Phone 8.1 and Windows 8.1 Store AppsPortable Class Library for Windows Phone 8.1 and Windows 8.1 Store Apps

      Supported version: 4.6.x and later
      Assembly: ComponentPro.Ftp.WinPcl (in ComponentPro.Ftp.WinPcl.dll)

      Universal Windows Platform (includes Windows 10 Mobile, Windows 10 Store Apps and Windows 10 IoT)Universal Windows Platform (includes Windows 10 Mobile, Windows 10 Store Apps and Windows 10 IoT)

      Supported version: 4.6.x and later
      Assembly: ComponentPro.Ftp.Uwp (in ComponentPro.Ftp.Uwp.dll)

      Xamarin AndroidXamarin Android

      Supported version: 2.3 and later
      Assembly: ComponentPro.Ftp.Android (in ComponentPro.Ftp.Android.dll)

      Xamarin MacXamarin Mac

      Supported version: 2.0.x and later
      Assembly: ComponentPro.Ftp.Mac (in ComponentPro.Ftp.Mac.dll)

      Xamarin iOSXamarin iOS

      Supported version: 5.1.x and later
      Assembly: ComponentPro.Ftp.iOS (in ComponentPro.Ftp.iOS.dll)

      See Also