public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
{
DescribeEventTopicsResponse response = new DescribeEventTopicsResponse();
context.Read();
int targetDepth = context.CurrentDepth;
while (context.ReadAtDepth(targetDepth))
{
if (context.TestExpression("EventTopics", targetDepth))
{
var unmarshaller = new ListUnmarshaller<EventTopic, EventTopicUnmarshaller>(EventTopicUnmarshaller.Instance);
response.EventTopics = unmarshaller.Unmarshall(context);
continue;
}
}
return response;
}