SharePoint の使用状況データを Web パーツに表示しようとしています。
これが私のコードです:
SPSite spSiteCollection = new SPSite(myURL)
spSiteCollection.CatchAccessDeniedException = false;
SPWeb spWeb = spSiteCollection.OpenWeb();
DataTable dtResults = new DataTable();
dtResults = spWeb.GetUsageData(SPUsageReportType.url, SPUsagePeriodType.lastMonth);
結果を含むはずの DataTable は常に null です。また、これを aspx ページから実行しようとしましたが、何もしませんでした。