NetBiosResolution.cs 201 B

123456789101112
  1. using System;
  2. namespace OhmGraphite
  3. {
  4. class NetBiosResolution : INameResolution
  5. {
  6. public string LookupName()
  7. {
  8. return Environment.MachineName;
  9. }
  10. }
  11. }