-1
私はUsergroupに自動的に追加されるよりもユーザーのIDを入力するウィンドウアプリケーションを作成しています。ウィンドウアプリケーションコードを次のように作成しています:プログラムを使用してsharepoint 2013のグループにユーザーを追加する方法
Imports Microsoft.SharePoint.Client
Imports System
Imports System.Collections.Generic
Imports System.Linq
Imports System.Text
Imports System.Threading.Tasks
Imports System.IO
Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
ClientContext ClientContext = New ClientContext("http://ServerName/Pages/Default.aspx")
End Sub
End Class
今、私はエラー言っクライアントコンテキストを取得していますがタイプであると私はクライアントコンテキストを使用してURLを追加します/私はVS2015でVb.netを使用していますexpression.Howとして使用することはできません。
http://www.c-sharpcorner.com/code/2629/add-users-to-group-in- sharepoint-2013-using-csom.aspx –