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

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

private static UnmarshallResult ( JsonUnmarshallerContext context, DescribeTrustedAdvisorChecksResponse response ) : void
context Amazon.Runtime.Internal.Transform.JsonUnmarshallerContext
response Amazon.AWSSupport.Model.DescribeTrustedAdvisorChecksResponse
Результат void
        private static void UnmarshallResult(JsonUnmarshallerContext context,DescribeTrustedAdvisorChecksResponse response)
        {
          
            int originalDepth = context.CurrentDepth;
            int targetDepth = originalDepth + 1;
            while (context.Read())
            {
              
              if (context.TestExpression("checks", targetDepth))
              {
                context.Read();
                
                if (context.CurrentTokenType == JsonToken.Null)
                {
                    response.Checks = null;
                    continue;
                }
                  response.Checks = new List<TrustedAdvisorCheckDescription>();
                  TrustedAdvisorCheckDescriptionUnmarshaller unmarshaller = TrustedAdvisorCheckDescriptionUnmarshaller.GetInstance();
                while (context.Read())
                {
                  JsonToken token = context.CurrentTokenType;                
                  if (token == JsonToken.ArrayStart)
                  {
                    continue;
                  }
                  if (token == JsonToken.ArrayEnd)
                  {
                    break;
                  }
                   response.Checks.Add(unmarshaller.Unmarshall(context));
                }
                continue;
              }
  
                if (context.CurrentDepth <= originalDepth)
                {                   
                    return;
                }
            }
                        
            return;
        }                        
        
DescribeTrustedAdvisorChecksResponseUnmarshaller