c#consoleアプリケーションで共有ポイントのユーザー資格情報の認証にエラーが発生しました。C#Consoleのアプリケーションで共有ポイントのユーザーログインを認証する際にエラーが発生しました
私はその認証のために以下のコードを試しています。
using (ClientContext ctx = new ClientContext("https://sharepointurl"))
{
ctx.Credentials = new NetworkCredential(@"username", "password", "domain");
// Get the SharePoint web
Web web = ctx.Web;
// Load the Web properties
ctx.Load(web);
}
しかしctx.Credentials
2行目に、私はエラーになっています -
をタイプ の例外を投げましたがServerVersion = 'ctx.ServerVersionは' 'Microsoft.SharePoint.Client.PropertyOrFieldNotInitializedException'
dll
Microsoft.SharePoint
およびMicrosoft.SharePoint.RunTime
バージョン16.0.0.0
の参照番号を追加しました。また、15.0.0.0
何が問題になるはずですか?
ClientContextで実行すると、なぜMicrosoft.SharePointとMicrosoft.SharePoint.RunTimeが必要ですか?RefはMicrosoft.SharePoint.Clientである必要があります –
@vinayakhegdeはいMicrosoft.SharePointから継承されたMicrosoft.SharePoint.Client – Shirish