public bool getResult_PUT(SecurityMapping securityMapping, string targetMethod)
        {
            var postData = (string)securityMapping.MethodParameters.first();
            var result   = checkAccess(targetMethod, command_Url => this.http_PUT_JSON(command_Url, postData));

            return(result);
        }
Example #2
0
 public bool getResult_PUT(SecurityMapping securityMapping, string targetMethod)
 {
     var postData        = (string)securityMapping.MethodParameters.first();
     var result          = checkAccess(targetMethod, command_Url=> this.http_PUT_JSON(command_Url, postData));
     return result;
 }
Example #3
0
 public bool getResult_GET(SecurityMapping securityMapping, string targetMethod)
 {
     return checkAccess(targetMethod, this.http_GET);
 }
 public bool getResult_GET(SecurityMapping securityMapping, string targetMethod)
 {
     return(checkAccess(targetMethod, this.http_GET));
 }