Ejemplo n.º 1
0
        public static string GenerateJSONError(string message)
        {
            JSONError error = new JSONError(message);

            return JsonSerializer.ToJson(error);
        }
Ejemplo n.º 2
0
        public static string GenerateJSONError(string message)
        {
            JSONError error = new JSONError(message);

            return Json.Stringify(error, WebAppConfig.JsonDateFormat);
        }
Ejemplo n.º 3
0
        public static string GenerateJSONError(string message)
        {
            JSONError error = new JSONError(message);

            return(Json.Stringify(error, WebAppConfig.JsonDateFormat));
        }
Ejemplo n.º 4
0
        public static string GenerateJSONError(string message)
        {
            JSONError error = new JSONError(message);

            return(JsonSerializer.ToJson(error));
        }