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

setTime() public method

public setTime ( string time ) : Periodical
time string
return Periodical
        public Periodical 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.time = time;
            return this;
        }