Cloudberry Backup API:列出计划项目

Cloudberry Backup API: Listing Plan Items

我正在尝试使用 Cloud.Backup.API.dll 列出所有备份计划中选定的文件夹路径,但运气不佳。我已经放弃尝试在 powershell 中加载 dll(使用 Add-Type returns 'Unable to load one or more of the requested types'),而是用 C# 编写一个简单的控制台应用程序。到目前为止我有:

foreach (BackupPlan plan in BackupProvider.GetBackupPlans())
    {
        Console.WriteLine(plan.PlanItems);
    }

但是,PlanItems returns:

CloudBerryLab.Backup.API.BackupPlan+d__0

我到底做错了什么?

对于 C#,这将列出路径:

foreach (string _item in plan.PlanItems)
               {
                   Console.WriteLine(_item);    
               }