C# 클래스 UniversalRateReminder.RatePopup

A static class for showing a pop up for rating the app after the app has been launched a specific number of times.
파일 보기 프로젝트 열기: r2d2rigo/UniversalRateReminder

공개 프로퍼티들

프로퍼티 타입 설명
DefaultLaunchLimitForReminder int

공개 메소드들

메소드 설명
CheckRateReminderAsync ( ) : Task

Increments the launch counter and if it is equal or less than the current value of RatePopup.LaunchLimit, shows the rating pop up. A flag will be set so the dialog only shows once.

GetAppVersion ( ) : string

Get's the application version

ResetLaunchCount ( ) : void

Resets the stored launch count to zero, and resets the flag that prevents the pop up from showing more than once.

비공개 메소드들

메소드 설명
RatePopup ( ) : System

Static constructor for initializing default values.

메소드 상세

CheckRateReminderAsync() 공개 정적인 메소드

Increments the launch counter and if it is equal or less than the current value of RatePopup.LaunchLimit, shows the rating pop up. A flag will be set so the dialog only shows once.
public static CheckRateReminderAsync ( ) : Task
리턴 Task

GetAppVersion() 공개 정적인 메소드

Get's the application version
public static GetAppVersion ( ) : string
리턴 string

ResetLaunchCount() 공개 정적인 메소드

Resets the stored launch count to zero, and resets the flag that prevents the pop up from showing more than once.
public static ResetLaunchCount ( ) : void
리턴 void

프로퍼티 상세

DefaultLaunchLimitForReminder 공개적으로 정적으로 프로퍼티

The default number of times the application needs to be launched before showing the reminder. The default value is 5.
public static int DefaultLaunchLimitForReminder
리턴 int