C# 클래스 GitForce.ClassVersion

This class implements the version related functions. It also checks for a new version of the program off the web.
파일 보기 프로젝트 열기: gdevic/GitForce 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
NewVersionAvailable bool

공개 메소드들

메소드 설명
ClassVersion ( ) : System

Class constructor starts a new version check thread.

GetBuild ( ) : string

Return the build date/time string

GetVersion ( ) : string

Returns the program version number

비공개 메소드들

메소드 설명
AltThreadVersionCheck ( ) : void

This function is run on a separate thread. It checks for a new version.

ThreadVersionCheck ( ) : void

This function is run on a separate thread. It checks for a new version.

메소드 상세

ClassVersion() 공개 메소드

Class constructor starts a new version check thread.
public ClassVersion ( ) : System
리턴 System

GetBuild() 공개 정적인 메소드

Return the build date/time string
public static GetBuild ( ) : string
리턴 string

GetVersion() 공개 정적인 메소드

Returns the program version number
public static GetVersion ( ) : string
리턴 string

프로퍼티 상세

NewVersionAvailable 공개적으로 프로퍼티

Set to true if a new version is available. This should really be interlocking, but volatile will do with bools.
public bool NewVersionAvailable
리턴 bool