File objects represent that metadata about individual files in Box, with attributes describing who created the file, when it was last modified, and other information.
Inheritance: BoxResourceManager
Example #1
0
 private void InitManagers()
 {
     FoldersManager = new BoxFoldersManager(_config, _service, _converter, Auth);
     FilesManager = new BoxFilesManager(_config, _service, _converter, Auth);
     CommentsManager = new BoxCommentsManager(_config, _service, _converter, Auth);
     CollaborationsManager = new BoxCollaborationsManager(_config, _service, _converter, Auth);
     SearchManager = new BoxSearchManager(_config, _service, _converter, Auth);
     UsersManager = new BoxUsersManager(_config, _service, _converter, Auth);
 }
 public BoxFilesManagerTest()
 {
     _filesManager = new BoxFilesManager(_config.Object, _service, _converter, _authRepository);
 }