Browse by Tags
All Tags »
Useful Code Snippets (RSS)
This is a clipboard friendly version of example #16, Asynchronous Processing, from Using the SharePoint 2010 Managed Client Object Model . using System; using System.Collections.Generic; using Microsoft.SharePoint.Client; class Program { static void Main(string[]
Read More...
This is a clipboard friendly version of example #15, Accessing Large Lists, from Using the SharePoint 2010 Managed Client Object Model . using System; using System.Linq; using Microsoft.SharePoint.Client; class Program { static void Main() { ClientContext
Read More...
This is a clipboard friendly version of example #14, Discovering the Schema for Fields, from Using the SharePoint 2010 Managed Client Object Model . using System; using System.Linq; using System.Xml.Linq; using Microsoft.SharePoint.Client; class Program
Read More...
This is a clipboard friendly version of example #13, Delete a List, from Using the SharePoint 2010 Managed Client Object Model . using System; using Microsoft.SharePoint.Client; class DisplayWebTitle { static void Main() { ClientContext clientContext
Read More...
This is a clipboard friendly version of example #12, Deleting Client Objects, from Using the SharePoint 2010 Managed Client Object Model . using System; using System.Linq; using System.Collections.Generic; using Microsoft.SharePoint.Client; class Program
Read More...
This is a clipboard friendly version of example #11, Updating Client Objects, from Using the SharePoint 2010 Managed Client Object Model . using System; using Microsoft.SharePoint.Client; class Program { static void Main(string[] args) { ClientContext
Read More...
This is a clipboard friendly version of example #10, Filtering the Child Collection returned by LoadQuery using LINQ, from Using the SharePoint 2010 Managed Client Object Model . using System; using System.Linq; using System.Collections.Generic; using
Read More...
This is a clipboard friendly version of example #9, Increasing Performance by Nesting Includes in LoadQuery, from Using the SharePoint 2010 Managed Client Object Model . using System; using System.Collections.Generic; using Microsoft.SharePoint.Client;
Read More...
This is a clipboard friendly version of example #8, Using the LoadQuery Method, from Using the SharePoint 2010 Managed Client Object Model . using System; using System.Collections.Generic; using Microsoft.SharePoint.Client; class Program { static void
Read More...
This is a clipboard friendly version of example #7, Filtering the Child Collection returned by Load using LINQ, from Using the SharePoint 2010 Managed Client Object Model . using System; using System.Linq; using Microsoft.SharePoint.Client; class Program
Read More...
This is a clipboard friendly version of example #6, Using CAML to Query a List, from Using the SharePoint 2010 Managed Client Object Model . using System; using Microsoft.SharePoint.Client; class Program { static void Main(string[] args) { ClientContext
Read More...
This is a clipboard friendly version of example #5, Creating and Populating a List, from Using the SharePoint 2010 Managed Client Object Model . using System; using Microsoft.SharePoint.Client; class Program { static void Main() { ClientContext clientContext
Read More...
This is a clipboard friendly version of example #4, Trimming Result Sets using Lambda Expressions, from Using the SharePoint 2010 Managed Client Object Model . using System; using Microsoft.SharePoint.Client; class Program { static void Main() { ClientContext
Read More...
This is a clipboard friendly version of example #3, Object Identity Second Example, from Using the SharePoint 2010 Managed Client Object Model . using System; using Microsoft.SharePoint.Client; class Program { static void Main() { ClientContext clientContext
Read More...
This is a clipboard friendly version of example #2, Object Identity, from Using the SharePoint 2010 Managed Client Object Model . using System; using Microsoft.SharePoint.Client; class Program { static void Main() { ClientContext clientContext = new ClientContext("http://intranet.contoso.com");
Read More...