C# 클래스 SevenUpdate.Search

Contains methods to search for updates.
파일 보기 프로젝트 열기: robertbaker/SevenUpdate

공개 메소드들

메소드 설명
SearchForUpdates ( IEnumerable applications, string downloadFolder ) : void

Searches for updates while blocking the calling thread.

SearchForUpdatesAsync ( IEnumerable applications, string downloadFolder ) : void

Searches for files without blocking the calling thread.

SetUpdatesFound ( IEnumerable updates ) : void

Manually sets an Sui collection has updates found.

비공개 메소드들

메소드 설명
CheckForUpdates ( Sui &app ) : bool

Checks for updates.

IterateUpdate ( Update &update, string directory, string valueName, System.Platform platform ) : ulong

Iterates through the update and removes un needed values. Returns the download size for the update.

메소드 상세

SearchForUpdates() 공개 정적인 메소드

Searches for updates while blocking the calling thread.
public static SearchForUpdates ( IEnumerable applications, string downloadFolder ) : void
applications IEnumerable The collection of applications to check for updates.
downloadFolder string The directory where update might be downloaded to.
리턴 void

SearchForUpdatesAsync() 공개 정적인 메소드

Searches for files without blocking the calling thread.
public static SearchForUpdatesAsync ( IEnumerable applications, string downloadFolder ) : void
applications IEnumerable The collection of applications to check for updates.
downloadFolder string The directory where update might be downloaded to.
리턴 void

SetUpdatesFound() 공개 정적인 메소드

Manually sets an Sui collection has updates found.
public static SetUpdatesFound ( IEnumerable updates ) : void
updates IEnumerable The updates to set as found.
리턴 void