1
有沒有辦法將異常記錄到Sharepoint 2013內部部署版本的ULS日誌中?它應該只使用CSOM完成..如何使用CSOM將異常寫入ULS日誌?
有沒有辦法將異常記錄到Sharepoint 2013內部部署版本的ULS日誌中?它應該只使用CSOM完成..如何使用CSOM將異常寫入ULS日誌?
利用diagnostics.asmx Web服務 -
SharePointDiagnostics SharePointDiagnosticsObject = new SharePointDiagnostics();
SharePointDiagnosticsObject.Credentials = System.Net.CredentialCache.DefaultNetworkCredentials;
string Response = SharePointDiagnosticsObject.SendClientScriptErrorReport(message, file, line, client, stack, team, originalFile);
欲瞭解更多詳細信息的diagnostics.asmx參考以下鏈接的使用 -
https://vivekkumar11432.wordpress.com/2016/09/23/how-to-do-logging-in-uls-from-csom-in-c/