1. 环境配置:
    https://docs.microsoft.com/zh-cn/sharepoint/dev/sp-add-ins/using-csom-for-dotnet-standard

  2. CSOM 基本的API:
    https://docs.microsoft.com/zh-cn/sharepoint/dev/sp-add-ins/complete-basic-operations-using-sharepoint-client-library-code

补充:
String 和SecureString 的转换:
String to SecureString: SecureString theSecureString = new NetworkCredential("", "myPass").SecurePassword;
SecureString to String: string theString = new NetworkCredential("", theSecureString).Password;

相关文章:

  • 2021-04-18
  • 2021-11-12
  • 2021-06-02
  • 2022-12-23
  • 2022-12-23
  • 2021-10-03
  • 2021-06-20
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-06-18
  • 2022-12-23
  • 2021-09-08
  • 2021-09-24
  • 2022-12-23
相关资源
相似解决方案