C# 클래스 BF2Statistics.ASP.StatsProcessor.AwardCriteria

The award criteria struct is used to define the query details used when determining if a player has met the requirements to earn an award. This object is used by the "BackendAward" object.
파일 보기 프로젝트 열기: BF2Statistics/ControlCenter 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
ExpectedResult int
Field string
Table string
Where string

공개 메소드들

메소드 설명
AwardCriteria ( string Table, string Field, int ExpectedResult, string Where )

Constructor.

메소드 상세

AwardCriteria() 공개 메소드

Constructor.
public AwardCriteria ( string Table, string Field, int ExpectedResult, string Where )
Table string The table name
Field string The field (column name)
ExpectedResult int /// The expected result. If the result matches this result, /// the criteria is considered met ///
Where string The where statement when running the query

프로퍼티 상세

ExpectedResult 공개적으로 프로퍼티

The expected result of the query. If the result of the query matches this, or is greater, then the criteria is considered met.
public int ExpectedResult
리턴 int

Field 공개적으로 프로퍼티

The field (or columns) to run the query on
public string Field
리턴 string

Table 공개적으로 프로퍼티

The table to run the qyery
public string Table
리턴 string

Where 공개적으로 프로퍼티

The where statement to use when running the query
public string Where
리턴 string