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

ProcessProperty() protected method

protected ProcessProperty ( JToken token, string prefix, string>.List records ) : string>>>.List
token JToken
prefix string
records string>.List
return string>>>.List
        protected List<List<Tuple<string, string>>> ProcessProperty(JToken token, string prefix, List<List<Tuple<string, string>>> records)
        {
            var property = token as JProperty;
            var name = string.IsNullOrEmpty(prefix) ? property.Name : String.Format("{0}.{1}",prefix,property.Name);
            return Process(property.Value, name, records);
        }