public object GetValue()
 {
     if (_ftpAttribute.ReadOnStartup)
     {
         var task = _client.GetFileAsync(_config, _ftpAttribute.Path);
         task.Wait();
         return(task.Result);
     }
     //TODO: Allow access to a file on ftp and not just send to a file
     return(null);
 }