cn.jpush.api.schedule.ScheduleClient.ScheduleClient C# (CSharp) Method

ScheduleClient() public method

public ScheduleClient ( String appKey, String masterSecret ) : System
appKey String
masterSecret String
return System
        public ScheduleClient(String appKey, String masterSecret)
        {
            Preconditions.checkArgument(!String.IsNullOrEmpty(appKey), "appKey should be set");
            Preconditions.checkArgument(!String.IsNullOrEmpty(masterSecret), "masterSecret should be set");
            this.appKey = appKey;
            this.masterSecret = masterSecret;
        }