private static void UnmarshallResult(JsonUnmarshallerContext context, DescribeCachediSCSIVolumesResponse response) { int originalDepth = context.CurrentDepth; int targetDepth = originalDepth + 1; while (context.Read()) { if (context.TestExpression("CachediSCSIVolumes", targetDepth)) { context.Read(); response.CachediSCSIVolumes = new List <CachediSCSIVolume>(); CachediSCSIVolumeUnmarshaller unmarshaller = CachediSCSIVolumeUnmarshaller.GetInstance(); while (context.Read()) { JsonToken token = context.CurrentTokenType; if (token == JsonToken.ArrayStart) { continue; } if (token == JsonToken.ArrayEnd) { break; } response.CachediSCSIVolumes.Add(unmarshaller.Unmarshall(context)); } continue; } if (context.CurrentDepth <= originalDepth) { return; } } return; }
public DescribeCachediSCSIVolumesResult Unmarshall(JsonUnmarshallerContext context) { DescribeCachediSCSIVolumesResult describeCachediSCSIVolumesResult = new DescribeCachediSCSIVolumesResult(); describeCachediSCSIVolumesResult.CachediSCSIVolumes = 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("CachediSCSIVolumes", targetDepth)) { describeCachediSCSIVolumesResult.CachediSCSIVolumes = new List <CachediSCSIVolume>(); CachediSCSIVolumeUnmarshaller unmarshaller = CachediSCSIVolumeUnmarshaller.GetInstance(); while (context.Read()) { if ((context.IsArrayElement) && (context.CurrentDepth == targetDepth)) { describeCachediSCSIVolumesResult.CachediSCSIVolumes.Add(unmarshaller.Unmarshall(context)); } else if (context.IsEndArray) { break; } } continue; } } else if (context.IsEndElement && context.CurrentDepth <= originalDepth) { return(describeCachediSCSIVolumesResult); } } return(describeCachediSCSIVolumesResult); }