cn.jpush.api.schedule.Enabled.setEnable C# (CSharp) Method

setEnable() public method

public setEnable ( bool enable ) : void
enable bool
return void
        public void setEnable(bool enable)
        {
            this.enable = enable;
        }

Usage Example

 public void setRightEnableTest(bool enable)
 {
     Enabled enabled = new Enabled();
     enabled.setEnable(false);
     Assert.AreEqual(false, enabled.getEnable());
 }
All Usage Examples Of cn.jpush.api.schedule.Enabled::setEnable