C# 클래스 Nexus.Client.DownloadMonitoring.DownloadMonitor

This monitors the status of activities.
상속: INotifyPropertyChanged
파일 보기 프로젝트 열기: NexusMods/NexusModManager-4.5 1 사용 예제들

공개 메소드들

메소드 설명
AddActivity ( AddModTask p_tskTask ) : void

Adds a task to the monitor.

CanPause ( IBackgroundTask p_tskTask ) : bool

Determines if the given IBackgroundTask can be paused.

CanQueue ( IBackgroundTask p_tskTask ) : bool

Determines if the given IBackgroundTask can be paused.

CanRemove ( IBackgroundTask p_tskTask ) : bool

Determines if the given IBackgroundTask can be removed from the monitor.

CanResume ( IBackgroundTask p_tskTask ) : bool

Determines if the given IBackgroundTask can be resumed.

DownloadMonitor ( ) : System

The default constructor.

PauseDownload ( IBackgroundTask p_tskTask ) : void

Pauses a task.

QueueDownload ( IBackgroundTask p_tskTask ) : void

Pauses a task.

RemoveDownload ( AddModTask p_tskTask ) : void

Removes a task from the monitor.

Tasks can only be removed if they are not running.

ResumeDownload ( IBackgroundTask p_tskTask ) : void

Resumes a task.

보호된 메소드들

메소드 설명
OnPropertyChanged ( string name ) : void

Raises the INotifyPropertyChanged.PropertyChanged event of the project.

비공개 메소드들

메소드 설명
Task_PropertyChanged ( object sender, PropertyChangedEventArgs e ) : void

Handles the INotifyPropertyChanged.PropertyChanged event of tasks.

This adds or removes tasks from the active task list as appropriate.

메소드 상세

AddActivity() 공개 메소드

Adds a task to the monitor.
public AddActivity ( AddModTask p_tskTask ) : void
p_tskTask Nexus.Client.ModManagement.AddModTask The task to monitor.
리턴 void

CanPause() 공개 메소드

Determines if the given IBackgroundTask can be paused.
public CanPause ( IBackgroundTask p_tskTask ) : bool
p_tskTask IBackgroundTask The task for which it is to be determined /// if it can be paused.
리턴 bool

CanQueue() 공개 메소드

Determines if the given IBackgroundTask can be paused.
public CanQueue ( IBackgroundTask p_tskTask ) : bool
p_tskTask IBackgroundTask The task for which it is to be determined /// if it can be paused.
리턴 bool

CanRemove() 공개 메소드

Determines if the given IBackgroundTask can be removed from the monitor.
public CanRemove ( IBackgroundTask p_tskTask ) : bool
p_tskTask IBackgroundTask The task for which it is to be determined /// if it can be removed from the monitor.
리턴 bool

CanResume() 공개 메소드

Determines if the given IBackgroundTask can be resumed.
public CanResume ( IBackgroundTask p_tskTask ) : bool
p_tskTask IBackgroundTask The task for which it is to be determined /// if it can be resumed.
리턴 bool

DownloadMonitor() 공개 메소드

The default constructor.
public DownloadMonitor ( ) : System
리턴 System

OnPropertyChanged() 보호된 메소드

Raises the INotifyPropertyChanged.PropertyChanged event of the project.
protected OnPropertyChanged ( string name ) : void
name string The property name.
리턴 void

PauseDownload() 공개 메소드

Pauses a task.
public PauseDownload ( IBackgroundTask p_tskTask ) : void
p_tskTask IBackgroundTask The task to pause.
리턴 void

QueueDownload() 공개 메소드

Pauses a task.
public QueueDownload ( IBackgroundTask p_tskTask ) : void
p_tskTask IBackgroundTask The task to pause.
리턴 void

RemoveDownload() 공개 메소드

Removes a task from the monitor.
Tasks can only be removed if they are not running.
public RemoveDownload ( AddModTask p_tskTask ) : void
p_tskTask Nexus.Client.ModManagement.AddModTask The task to remove.
리턴 void

ResumeDownload() 공개 메소드

Resumes a task.
public ResumeDownload ( IBackgroundTask p_tskTask ) : void
p_tskTask IBackgroundTask The task to resume.
리턴 void