public static List <DomainInformation> EnumerateComputersInformation(string name, UserProfile options, DomainDiscoveryModeEnum mode, bool ignoreStructure = false) => mode switch
 {
Example #2
0
 public DomainDiscoverySettings(DomainDiscoveryModeEnum mode, string name, Guid userProfileId)
 {
     Mode          = mode;
     Name          = name ?? throw new ArgumentNullException(nameof(name));
     UserProfileId = userProfileId;
 }