Exemplo n.º 1
0
        public bool Equals(Query second)
        {
            // If parameter is null return false:
            if ((object)second == null || sourceJSON == null || second.sourceJSON == null)
            {
                return false;
            }

            // Return true if the fields match:
            return sourceJSON.Equals(second.sourceJSON);
        }
Exemplo n.º 2
0
 public Listing(Query query)
 {
     JSONQuery = query;
 }