Represents the output for ListStreams.
Inheritance: Amazon.Runtime.AmazonWebServiceResponse
       public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
       {
           ListStreamsResponse response = new ListStreamsResponse();       
         
           context.Read();
           int targetDepth = context.CurrentDepth;
           while (context.ReadAtDepth(targetDepth))
           {
             
             if (context.TestExpression("StreamNames", targetDepth))
             {
               
               var unmarshaller = new ListUnmarshaller<String,StringUnmarshaller>(
                   StringUnmarshaller.GetInstance());                  
               response.StreamNames = unmarshaller.Unmarshall(context);
               
               continue;
             }
 
             if (context.TestExpression("HasMoreStreams", targetDepth))
             {
               response.HasMoreStreams = BoolUnmarshaller.GetInstance().Unmarshall(context);
               continue;
             }
 
           }
                       
           return response;
       }                        
 public override AmazonWebServiceResponse Unmarshall(JsonUnmarshallerContext context)
 {
   ListStreamsResponse response = new ListStreamsResponse();          
   
   context.Read();
   
   UnmarshallResult(context,response);
   return response;
 }
       private static void UnmarshallResult(JsonUnmarshallerContext context,ListStreamsResponse response)
       {
         
           int originalDepth = context.CurrentDepth;
           int targetDepth = originalDepth + 1;
           while (context.Read())
           {
             
             if (context.TestExpression("StreamNames", targetDepth))
             {
               context.Read();
               response.StreamNames = new List<String>();
                       StringUnmarshaller unmarshaller = StringUnmarshaller.GetInstance();
               while (context.Read())
               {
                 JsonToken token = context.CurrentTokenType;                
                 if (token == JsonToken.ArrayStart)
                 {
                   continue;
                 }
                 if (token == JsonToken.ArrayEnd)
                 {
                   break;
                 }
                  response.StreamNames.Add(unmarshaller.Unmarshall(context));
               }
               continue;
             }
 
             if (context.TestExpression("HasMoreStreams", targetDepth))
             {
               context.Read();
               response.HasMoreStreams = BoolUnmarshaller.GetInstance().Unmarshall(context);
               continue;
             }
 
               if (context.CurrentDepth <= originalDepth)
               {                   
                   return;
               }
           }
                       
           return;
       }