Ejemplo n.º 1
0
 bool IScriptable.ToggleProperty(string name)
 {
     return(HTTPLayerApi.ToggleSetting(name));
 }
Ejemplo n.º 2
0
 void IScriptable.SetProperty(string name, string value)
 {
     HTTPLayerApi.SetSetting(name, value, true);
 }
Ejemplo n.º 3
0
 string IScriptable.GetProperty(string name)
 {
     return(HTTPLayerApi.GetSetting(name).ToString());
 }
Ejemplo n.º 4
0
 ScriptableProperty[] IScriptable.GetProperties()
 {
     return(HTTPLayerApi.GetSettingsList());
 }