cn.jpush.api.schedule.Trigger.setTime C# (CSharp) Method

setTime() public method

public setTime ( string time ) : Trigger
time string
return Trigger
        public Trigger setTime(string time)
        {
            Preconditions.checkArgument(!String.IsNullOrEmpty(time), "The time must not be empty.");
            Preconditions.checkArgument(StringUtil.IsTime(time), "The time must be the right format.");
            this.periodical.setTime(time);
            return this;
        }