public VMDNSForwardZonesNode(VMDNSServerNode node) : base(node) { this.DisplayName = VMDNSConstants.FORWARDZONE; this.ZoneType = (int)VmDnsZoneType.FORWARD; RefreshChildren(); }
public VMDNSZonesNode(VMDNSServerNode node) : base(node) { this.DisplayName = VMDNSConstants.ZONES; this.ZoneType = -1; this.FillChildZones(); }
public VMDNSZoneEntryNode(VmDnsZone zone, VMDNSServerNode node, VMDNSRootScopeNode parent) : base(node) { this.DisplayName = zone.Name; this.CurrentZone = zone; this.Parent = parent; }
public ServerOptionsController(VMDNSServerNode node) : base("ServerOptions") { this.ServerNode = node; }
protected VMDNSZonesBaseNode(VMDNSServerNode node) : base(node) { this.DisplayName = string.Empty; }