IDnsService public interface IDnsService Documentation Code using System; using System.Collections.Generic; namespace Relativity.Transfer { public interface IDnsService { IList<string> GetAliases(string hostName); bool IsBaseOf(Uri serverPath, Uri path); } }