Author Topic: WDE Hostname CustomModule  (Read 2030 times)

Offline LucasPenen

  • Newbie
  • *
  • Posts: 6
  • Karma: 0
WDE Hostname CustomModule
« on: November 28, 2018, 07:22:54 PM »
How can I get hostname that agent puts in the WDE login from a Custom Module of an custom extension?

Thank you for all!

Offline PeteHoyle

  • Full Member
  • ***
  • Posts: 126
  • Karma: 13
Re: WDE Hostname CustomModule
« Reply #1 on: November 30, 2018, 02:15:31 PM »
That will be the host of Configuration Server:

            [code]
            IConfigurationService confService = container.Resolve<IConfigurationService>();
            log.Debug("Configuration Service Host: " + confService.ConfigServerHost);
            [/code]