public AgentConfigurationManager()
        {
            agentDocument = new JsonDynamicDocument {
                Filename = Configuration.AgentFile,
            };

            Value = new AgentConfiguration();
        }
 private void Document_OnLoad(dynamic document)
 {
     Value = document.ToObject <AgentConfiguration>();
 }