C# 클래스 Amazon.S3.Transfer.DownloadDirectoryProgressArgs

Encapsulates the information needed to provide transfer progress to subscribers of the DownloadDirectory event.
상속: System.EventArgs
파일 보기 프로젝트 열기: scopely/aws-sdk-net 1 사용 예제들

공개 메소드들

메소드 설명
DownloadDirectoryProgressArgs ( int numberOfFilesDownloaded, int totalNumberOfFiles, string currentFile, long transferredBytesForCurrentFile, long totalNumberOfBytesForCurrentFile ) : System

Constructs a new instance of DownloadDirectoryProgressArgs.

ToString ( ) : string

메소드 상세

DownloadDirectoryProgressArgs() 공개 메소드

Constructs a new instance of DownloadDirectoryProgressArgs.
public DownloadDirectoryProgressArgs ( int numberOfFilesDownloaded, int totalNumberOfFiles, string currentFile, long transferredBytesForCurrentFile, long totalNumberOfBytesForCurrentFile ) : System
numberOfFilesDownloaded int /// The number of files downloaded. ///
totalNumberOfFiles int /// The total number of files to download. ///
currentFile string /// The current file being downloaded ///
transferredBytesForCurrentFile long /// The number of transferred bytes for the current file. ///
totalNumberOfBytesForCurrentFile long /// The size of the current file in bytes. ///
리턴 System

ToString() 공개 메소드

public ToString ( ) : string
리턴 string