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

setEnd() public method

public setEnd ( string end ) : Trigger
end string
return Trigger
        public Trigger setEnd(string end)
        {
            Preconditions.checkArgument(!String.IsNullOrEmpty(end), "The time must not be empty.");
            Preconditions.checkArgument(StringUtil.IsDateTime(end), "The end is not valid.");
            this.periodical.setEnd(end);
            return this;
        }