SharePoint 2013 App
1. App Web & Host Web
The special website to which the app is deployed is called an App Web.
The website to which the app is installed is called the Host Web.
例子:
ClientContext context = new ClientContext("https://gjq.sharepoint.com/"); System.Security.SecureString passWord = new System.Security.SecureString(); foreach (char c in "abcd1234%".ToCharArray()) { passWord.AppendChar(c); } context.Credentials = new SharePointOnlineCredentials("[email protected]", passWord);
3. App中的Client Web Part是否加入到Feature或者package中不影响App中的内容,App文件会将项目中的所有信息加入进去;
4.
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。