public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { ListBootstrapActionsResponse response = new ListBootstrapActionsResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("BootstrapActions", targetDepth)) { var unmarshaller = new ListUnmarshaller<Command,CommandUnmarshaller>( CommandUnmarshaller.GetInstance()); response.BootstrapActions = unmarshaller.Unmarshall(context); continue; } if (context.TestExpression("Marker", targetDepth)) { response.Marker = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } } return response; }
public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { ListBootstrapActionsResponse response = new ListBootstrapActionsResponse(); context.Read(); UnmarshallResult(context,response); return response; }
private static void UnmarshallResult(JsonUnmarshallerContext context,ListBootstrapActionsResponse response) { int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; while (context.Read()) { if (context.TestExpression("BootstrapActions", targetDepth)) { context.Read(); if (context.CurrentTokenType == JsonToken.Null) { response.BootstrapActions = null; continue; } response.BootstrapActions = new List<Command>(); CommandUnmarshaller unmarshaller = CommandUnmarshaller.GetInstance(); while (context.Read()) { JsonToken token = context.CurrentTokenType; if (token == JsonToken.ArrayStart) { continue; } if (token == JsonToken.ArrayEnd) { break; } response.BootstrapActions.Add(unmarshaller.Unmarshall(context)); } continue; } if (context.TestExpression("Marker", targetDepth)) { context.Read(); response.Marker = StringUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.CurrentDepth <= originalDepth) { return; } } return; }