Ejemplo n.º 1
0
        public bool Equals(INetworkCommand networkCommand)
        {
            if (!(networkCommand is ChildEntriesRequestNetworkCommand))
            {
                return(false);
            }

            ChildEntriesRequestNetworkCommand other = (ChildEntriesRequestNetworkCommand)networkCommand;

            return(EntryFullPath.Equals(other.EntryFullPath));
        }
Ejemplo n.º 2
0
        public bool Equals(INetworkCommand networkCommand)
        {
            if (!(networkCommand is FileOpenReadNetworkCommand))
            {
                return(false);
            }

            FileOpenReadNetworkCommand other = (FileOpenReadNetworkCommand)networkCommand;

            return(EntryFullPath.Equals(other.EntryFullPath));
        }
Ejemplo n.º 3
0
        public bool Equals(INetworkCommand networkCommand)
        {
            if (!(networkCommand is EntryGetNetworkCommand))
            {
                return(false);
            }

            EntryGetNetworkCommand other = (EntryGetNetworkCommand)networkCommand;

            return(EntryFullPath.Equals(other.EntryFullPath));
        }