惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

博客园 - 叶小钗
云风的 BLOG
云风的 BLOG
G
Google Developers Blog
S
SegmentFault 最新的问题
罗磊的独立博客
Hugging Face - Blog
Hugging Face - Blog
美团技术团队
爱范儿
爱范儿
博客园 - 三生石上(FineUI控件)
H
Hackread – Cybersecurity News, Data Breaches, AI and More
D
DataBreaches.Net
F
Fortinet All Blogs
TaoSecurity Blog
TaoSecurity Blog
D
Docker
C
Cybersecurity and Infrastructure Security Agency CISA
K
Kaspersky official blog
宝玉的分享
宝玉的分享
腾讯CDC
Google Online Security Blog
Google Online Security Blog
Recorded Future
Recorded Future
T
The Exploit Database - CXSecurity.com
T
The Blog of Author Tim Ferriss
V
V2EX
S
Securelist
K
KPMG report finds enterprise disconnect between AI and its ROI | CIO
C
CERT Recently Published Vulnerability Notes
A
Arctic Wolf
Scott Helme
Scott Helme
L
LINUX DO - 热门话题
Y
Y Combinator Blog
P
Proofpoint News Feed
T
Tor Project blog
AWS News Blog
AWS News Blog
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
The Last Watchdog
The Last Watchdog
博客园 - 聂微东
T
Threat Research - Cisco Blogs
B
Blog
Attack and Defense Labs
Attack and Defense Labs
L
Lohrmann on Cybersecurity
C
CXSECURITY Database RSS Feed - CXSecurity.com
阮一峰的网络日志
阮一峰的网络日志
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
IT之家
IT之家
N
News and Events Feed by Topic
博客园 - 司徒正美
H
Help Net Security
C
Cisco Blogs
C
Check Point Blog
S
Secure Thoughts

博客园 - billqian

Asp.net core 将[Authorize]授权属性应用于所有Controller 树莓派上跑.NET的segment fault错误 WiFi、ZigBee、BLE用哪个? SQL Server 的字段不为NULL时唯一 Gnucash数据库结构 sql server中的merge 禁止使用的极限用语 Git 操作指南 Excel VBA保护工作表 获取SQL Server数据库中的表和字段描述 html文件中jquery与velocity变量中的$冲突的解决方法 云计算知识 通俗理解篇 SharePoint 项目的死法(三) SharePoint 项目的死法(二) SharePoint 项目的死法(一) 独立安装SharePoint 2013碰到的"SDDL"问题及解决方法 解决创建SharePoint网站的时候使用IIS标头错误的问题 解析互联网的产品精神(转) 普华永道、IBM、麦肯锡、埃森哲 (转)
.NET core 访问SharePoint Online
billqian · 2021-12-02 · via 博客园 - billqian
  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;

posted @ 2021-12-02 10:30  billqian  阅读(312)  评论(0)    收藏  举报

刷新页面返回顶部