Inheritance: System.Dynamic.DynamicObject
コード例 #1
0
 public override void Enable()
 {
     dynamic ToopherSettings = new DynamicSettings();
     ToopherSettings.GinaPassthru = false;
 }
コード例 #2
0
 public override bool Enabled()
 {
     dynamic ToopherSettings = new DynamicSettings();
     bool passthru = ToopherSettings.GetSetting("GinaPassthru", false);
     return !passthru;
 }
コード例 #3
0
 public override void Disable()
 {
     dynamic ToopherSettings = new DynamicSettings();
     ToopherSettings.GinaPassthru = true;
 }