public static VolumeUnmarshaller GetInstance() { if (instance == null) { instance = new VolumeUnmarshaller(); } return(instance); }
public DescribeVolumesResult Unmarshall(JsonUnmarshallerContext context) { if (context.CurrentTokenType == JsonUnmarshallerContext.TokenType.Null) { return(null); } DescribeVolumesResult describeVolumesResult = new DescribeVolumesResult(); describeVolumesResult.Volumes = 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("Volumes", targetDepth)) { describeVolumesResult.Volumes = new List <Volume>(); VolumeUnmarshaller unmarshaller = VolumeUnmarshaller.GetInstance(); while (context.Read()) { if ((context.IsArrayElement) && (context.CurrentDepth == targetDepth)) { describeVolumesResult.Volumes.Add(unmarshaller.Unmarshall(context)); } else if (context.IsEndArray) { break; } } continue; } } else if (context.IsEndElement && context.CurrentDepth <= originalDepth) { return(describeVolumesResult); } } return(describeVolumesResult); }
public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { DescribeVolumesResponse response = new DescribeVolumesResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("Volumes", targetDepth)) { var unmarshaller = new ListUnmarshaller <Volume, VolumeUnmarshaller>( VolumeUnmarshaller.GetInstance()); response.Volumes = unmarshaller.Unmarshall(context); continue; } } return(response); }
private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeVolumesResponse response) { int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; while (context.Read()) { if (context.TestExpression("Volumes", targetDepth)) { context.Read(); response.Volumes = new List <Volume>(); VolumeUnmarshaller unmarshaller = VolumeUnmarshaller.GetInstance(); while (context.Read()) { JsonToken token = context.CurrentTokenType; if (token == JsonToken.ArrayStart) { continue; } if (token == JsonToken.ArrayEnd) { break; } response.Volumes.Add(unmarshaller.Unmarshall(context)); } continue; } if (context.CurrentDepth <= originalDepth) { return; } } return; }