using System;
using System.Collections.Generic;
using Edjcase.JsonRpc.Router;
using EdjCase.JsonRpc.Core;
using Newtonsoft.Json;
namespace EdjCase.JsonRpc.Router.Abstractions
{
public interface IRpcParser
{
///
/// Parses all the requests from the json in the request
///
/// Json from the http request
/// Result of the parsing. Includes all the parsed requests and any errors
ParsingResult ParseRequests(string jsonString);
}
}