Guest User

Untitled

a guest
Feb 25th, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. var ctx = authManager.GetWebLoginClientContext("https://MYSITEURL");
  2.  
  3. //using auto connect
  4. Web web = ctx.Web;
  5. User user = web.CurrentUser;
  6. ctx.Load(web);
  7. ctx.Load(user);
  8. //ctx.ExecuteQuery();
  9. ctx.ExecuteQuery();
  10.  
  11. ViewBag.Site += web.Title;
Add Comment
Please, Sign In to add comment