Returns information about the DescribeVirtualInterfaces response and response metadata.
Наследование: DescribeVirtualInterfacesResult
 public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
 {
   DescribeVirtualInterfacesResponse response = new DescribeVirtualInterfacesResponse();          
   
   context.Read();
   
   UnmarshallResult(context,response);
   return response;
 }
        public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
        {
            DescribeVirtualInterfacesResponse response = new DescribeVirtualInterfacesResponse();

              context.Read();

              response.DescribeVirtualInterfacesResult = DescribeVirtualInterfacesResultUnmarshaller.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)
        {
            DescribeVirtualInterfacesResponse response = new DescribeVirtualInterfacesResponse();

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

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