Ejemplo n.º 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);
Ejemplo n.º 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);
Ejemplo n.º 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);