Returns information about the DescribeUserProfilesResult response and response metadata.
Inheritance: Amazon.Runtime.AmazonWebServiceResponse
 public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
 {
   DescribeUserProfilesResponse response = new DescribeUserProfilesResponse();          
   
   context.Read();
   
   UnmarshallResult(context,response);
   return response;
 }
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeUserProfilesResponse response = new DescribeUserProfilesResponse();

              context.Read();

              response.DescribeUserProfilesResult = DescribeUserProfilesResultUnmarshaller.GetInstance().Unmarshall(context);

              return response;
        }
        /// <summary>
        /// Unmarshaller the response from the service to the response class.
        /// </summary>  
        /// <param name="context"></param>
        /// <returns></returns>
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeUserProfilesResponse response = new DescribeUserProfilesResponse();

            context.Read();
            int targetDepth = context.CurrentDepth;
            while (context.ReadAtDepth(targetDepth))
            {
                if (context.TestExpression("UserProfiles", targetDepth))
                {
                    var unmarshaller = new ListUnmarshaller<UserProfile, UserProfileUnmarshaller>(UserProfileUnmarshaller.Instance);
                    response.UserProfiles = unmarshaller.Unmarshall(context);
                    continue;
                }
            }

            return response;
        }
       private static void UnmarshallResult(JsonUnmarshallerContext context,DescribeUserProfilesResponse response)
       {
         
           int originalDepth = context.CurrentDepth;
           int targetDepth = originalDepth + 1;
           while (context.Read())
           {
             
             if (context.TestExpression("UserProfiles", targetDepth))
             {
               context.Read();
               response.UserProfiles = new List<UserProfile>();
                       UserProfileUnmarshaller unmarshaller = UserProfileUnmarshaller.GetInstance();
               while (context.Read())
               {
                 JsonToken token = context.CurrentTokenType;                
                 if (token == JsonToken.ArrayStart)
                 {
                   continue;
                 }
                 if (token == JsonToken.ArrayEnd)
                 {
                   break;
                 }
                  response.UserProfiles.Add(unmarshaller.Unmarshall(context));
               }
               continue;
             }
 
               if (context.CurrentDepth <= originalDepth)
               {                   
                   return;
               }
           }
                       
           return;
       }