public Service Unmarshall(JsonUnmarshallerContext context) { Service service = new Service(); service.Categories = null; int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; while (context.Read()) { if ((context.IsKey) && (context.CurrentDepth == targetDepth)) { context.Read(); context.Read(); if (context.TestExpression("Code", targetDepth)) { service.Code = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("Name", targetDepth)) { service.Name = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("Categories", targetDepth)) { service.Categories = new List <Category>(); CategoryUnmarshaller unmarshaller = CategoryUnmarshaller.GetInstance(); while (context.Read()) { if ((context.IsArrayElement) && (context.CurrentDepth == targetDepth)) { service.Categories.Add(unmarshaller.Unmarshall(context)); } else if (context.IsEndArray) { break; } } continue; } } else if (context.IsEndElement && context.CurrentDepth <= originalDepth) { return(service); } } return(service); }
public Service Unmarshall(JsonUnmarshallerContext context) { context.Read(); if (context.CurrentTokenType == JsonToken.Null) { return(null); } Service service = new Service(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("code", targetDepth)) { service.Code = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("name", targetDepth)) { service.Name = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("categories", targetDepth)) { var unmarshaller = new ListUnmarshaller <Category, CategoryUnmarshaller>( CategoryUnmarshaller.GetInstance()); service.Categories = unmarshaller.Unmarshall(context); continue; } } return(service); }
public Service Unmarshall(JsonUnmarshallerContext context) { if (context.CurrentTokenType == JsonToken.Null) { return(null); } Service service = new Service(); int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; while (context.Read()) { if (context.TestExpression("code", targetDepth)) { context.Read(); service.Code = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("name", targetDepth)) { context.Read(); service.Name = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.TestExpression("categories", targetDepth)) { context.Read(); if (context.CurrentTokenType == JsonToken.Null) { service.Categories = null; continue; } service.Categories = new List <Category>(); CategoryUnmarshaller unmarshaller = CategoryUnmarshaller.GetInstance(); while (context.Read()) { JsonToken token = context.CurrentTokenType; if (token == JsonToken.ArrayStart) { continue; } if (token == JsonToken.ArrayEnd) { break; } service.Categories.Add(unmarshaller.Unmarshall(context)); } continue; } if (context.CurrentDepth <= originalDepth) { return(service); } } return(service); }