Latest Posts

Client-Side Object Model (CSOM)


  • The SharePoint .Net client-side object model (CSOM) provides access to the SharePoint object model from code that is running locally or on a different server than SharePoint.

  • You can use the SharePoint client object model (CSOM) to retrieve, update, and manage data in SharePoint. SharePoint makes the CSOM available in several forms:

    1. .NET Framework redistributable assemblies
    2. JavaScript library
    3. REST/OData endpoints
    4. Windows Phone assemblies
    5. Silverlight redistributable assemblies
  • In this set of tutorials, we are going to focus on examples on .Net Framework redistributable assemblies

  • To use managed client object model, you need to add the below using statement in the code file.

  • using Microsoft.SharePoint.Client;

  • We have tried to give most of the .Net CSOM examples that can be used in school teaching, college teaching, learning, research work, development, interview preparation.

  • © 2024 Code SharePoint