Welcome to MSDN Blogs Sign in | Join | Help

Browse by Tags

Using the SharePoint 2010 Managed Client Object Model – Asynchronous Processing
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...
Using the SharePoint 2010 Managed Client Object Model – Accessing Large Lists
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...
Using the SharePoint 2010 Managed Client Object Model – Discovering the Schema for Fields
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...
Using the SharePoint 2010 Managed Client Object Model – Delete a List
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...
Using the SharePoint 2010 Managed Client Object Model – Deleting Client Objects
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...
Using the SharePoint 2010 Managed Client Object Model – Updating Client Objects
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...
Using the SharePoint 2010 Managed Client Object Model – Filtering the Child Collection returned by LoadQuery using LINQ
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...
Using the SharePoint 2010 Managed Client Object Model – Increasing Performance by Nesting Includes in LoadQuery
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...
Using the SharePoint 2010 Managed Client Object Model – Using the LoadQuery Method
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...
Using the SharePoint 2010 Managed Client Object Model – Filtering the Child Collection returned by Load using LINQ
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...
Using the SharePoint 2010 Managed Client Object Model – Using CAML to Query a List
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...
Using the SharePoint 2010 Managed Client Object Model – Creating and Populating a List
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...
Using the SharePoint 2010 Managed Client Object Model – Trimming Result Sets using Lambda Expressions
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...
Using the SharePoint 2010 Managed Client Object Model – Object Identity Second Example
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...
Using the SharePoint 2010 Managed Client Object Model – Object Identity
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...
More Posts Next page »
Page view tracker