CouchRS.Json.JsonVisitor.Process C# (CSharp) Method

Process() protected method

protected Process ( JToken jObject, string prefix, string>.List records ) : string>>>.List
jObject JToken
prefix string
records string>.List
return string>>>.List
        protected List<List<Tuple<string, string>>> Process(JToken jObject, string prefix, List<List<Tuple<string,string>>> records)
        {
            return typeProcessor[jObject.GetType()](jObject, prefix, records);
        }