C# 클래스 ICSharpCode.SharpZipLib.Zip.FastZipEvents

FastZipEvents supports all events applicable to FastZip operations.
파일 보기 프로젝트 열기: icsharpcode/SharpZipLib 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
CompletedFile CompletedFileHandler
DirectoryFailure DirectoryFailureHandler
FileFailure FileFailureHandler
ProcessFile ProcessFileHandler
Progress ProgressHandler

공개 메소드들

메소드 설명
OnCompletedFile ( string file ) : bool

Fires the CompletedFile delegate

OnDirectoryFailure ( string directory, Exception e ) : bool

Raise the directory failure event.

OnFileFailure ( string file, Exception e ) : bool

Fires the file failure handler delegate.

OnProcessDirectory ( string directory, bool hasMatchingFiles ) : bool

Fires the process directory delegate.

OnProcessFile ( string file ) : bool

Fires the ProcessFile delegate.

메소드 상세

OnCompletedFile() 공개 메소드

Fires the CompletedFile delegate
public OnCompletedFile ( string file ) : bool
file string The file whose processing has been completed.
리턴 bool

OnDirectoryFailure() 공개 메소드

Raise the directory failure event.
public OnDirectoryFailure ( string directory, Exception e ) : bool
directory string The directory causing the failure.
e System.Exception The exception for this event.
리턴 bool

OnFileFailure() 공개 메소드

Fires the file failure handler delegate.
public OnFileFailure ( string file, Exception e ) : bool
file string The file causing the failure.
e System.Exception The exception for this failure.
리턴 bool

OnProcessDirectory() 공개 메소드

Fires the process directory delegate.
public OnProcessDirectory ( string directory, bool hasMatchingFiles ) : bool
directory string The directory being processed.
hasMatchingFiles bool Flag indicating if the directory has matching files as determined by the current filter.
리턴 bool

OnProcessFile() 공개 메소드

Fires the ProcessFile delegate.
public OnProcessFile ( string file ) : bool
file string The file being processed.
리턴 bool

프로퍼티 상세

CompletedFile 공개적으로 프로퍼티

Delegate to invoke when processing for a file has been completed.
public CompletedFileHandler CompletedFile
리턴 CompletedFileHandler

DirectoryFailure 공개적으로 프로퍼티

Delegate to invoke when processing directory failures.
public DirectoryFailureHandler DirectoryFailure
리턴 DirectoryFailureHandler

FileFailure 공개적으로 프로퍼티

Delegate to invoke when processing file failures.
public FileFailureHandler FileFailure
리턴 FileFailureHandler

ProcessFile 공개적으로 프로퍼티

Delegate to invoke when processing files.
public ProcessFileHandler ProcessFile
리턴 ProcessFileHandler

Progress 공개적으로 프로퍼티

Delegate to invoke during processing of files.
public ProgressHandler Progress
리턴 ProgressHandler