Amazon.DirectConnect.Model.Internal.MarshallTransformations.DescribeConnectionsOnInterconnectResponseUnmarshaller.UnmarshallResult C# (CSharp) Метод

UnmarshallResult() приватный статический Метод

private static UnmarshallResult ( JsonUnmarshallerContext context, DescribeConnectionsOnInterconnectResponse response ) : void
context Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext
response Amazon.DirectConnect.Model.DescribeConnectionsOnInterconnectResponse
Результат void
        private static void UnmarshallResult(JsonUnmarshallerContext context,DescribeConnectionsOnInterconnectResponse response)
        {
          
            int originalDepth = context.CurrentDepth;
            int targetDepth = originalDepth + 1;
            while (context.Read())
            {
              
              if (context.TestExpression("connections", targetDepth))
              {
                context.Read();
                response.Connections = new List<Connection>();
                        ConnectionUnmarshaller unmarshaller = ConnectionUnmarshaller.GetInstance();
                while (context.Read())
                {
                  JsonToken token = context.CurrentTokenType;                
                  if (token == JsonToken.ArrayStart)
                  {
                    continue;
                  }
                  if (token == JsonToken.ArrayEnd)
                  {
                    break;
                  }
                   response.Connections.Add(unmarshaller.Unmarshall(context));
                }
                continue;
              }
  
                if (context.CurrentDepth <= originalDepth)
                {                   
                    return;
                }
            }
                        
            return;
        }                        
        
DescribeConnectionsOnInterconnectResponseUnmarshaller