1 using System
.Collections
.Generic
;
5 public interface INetworkBrowser
8 /// Get list of share names available on given server.
10 /// <param name="serverName">Network machine name.</param>
11 /// <returns>List of shares on server.</returns>
12 IEnumerable
<string> GetShares( string serverName
);
15 /// Get the list of network machine of types serves and workstation.
17 /// <returns>List of machines in network.</returns>
18 IEnumerable
<string> GetNetworkComputers();