public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { DescribeStreamResponse response = new DescribeStreamResponse(); context.Read(); UnmarshallResult(context,response); return response; }
public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context) { DescribeStreamResponse response = new DescribeStreamResponse(); context.Read(); int targetDepth = context.CurrentDepth; while (context.ReadAtDepth(targetDepth)) { if (context.TestExpression("StreamDescription", targetDepth)) { var unmarshaller = StreamDescriptionUnmarshaller.Instance; response.StreamDescription = unmarshaller.Unmarshall(context); continue; } } return response; }
private static void UnmarshallResult(JsonUnmarshallerContext context,DescribeStreamResponse response) { int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; while (context.Read()) { if (context.TestExpression("StreamDescription", targetDepth)) { context.Read(); response.StreamDescription = StreamDescriptionUnmarshaller.GetInstance().Unmarshall(context); continue; } if (context.CurrentDepth <= originalDepth) { return; } } return; }