Example #1
0
 /// <summary>
 /// Sorts EOS Devices by names
 /// </summary>
 /// <see cref="GetEOSDevicesBy"/>
 public static Dictionary <string, Hacknet.Computer> GetEOSDevicesByName(this Hacknet.Computer comp) =>
 comp.GetEOSDevicesBy(RetrieveType.NAME);
Example #2
0
 /// <summary>
 /// Sorts EOS Devices by NetworkMap indexes
 /// </summary>
 /// <see cref="GetEOSDevicesBy"/>
 public static Dictionary <string, Hacknet.Computer> GetEOSDevicesByIndex(this Hacknet.Computer comp) =>
 comp.GetEOSDevicesBy(RetrieveType.INDEX);
Example #3
0
 /// <summary>
 /// Sorts EOS Devices by ips
 /// </summary>
 /// <see cref="GetEOSDevicesBy"/>
 public static Dictionary <string, Hacknet.Computer> GetEOSDevicesByIp(this Hacknet.Computer comp) =>
 comp.GetEOSDevicesBy(RetrieveType.ADDRESS);