Example #1
0
        public bool load(string group, string method, string owner, string configure, titan.security.titan_token token)  //titan fetch method
        {
            this.token     = token;
            this.group     = group;
            this.method    = method;
            this.owner     = owner;
            this.configure = configure;
            bool found = this.load();

            if (found)
            {
                base_init();
            }
            return(found);
        }
Example #2
0
 public method(models.lambda i, string _group, string _method, string _owner, string _localization, titan.security.titan_token token)
 {
     input          = i;
     this.token     = token;
     this.group     = _group;
     this.method    = _method;
     this.owner     = _owner;
     this.configure = _localization;
     base_init();
 }