PnP stands for Practices and Patterns, which is a community driven open source project, where Microsoft and community members create an implementation pattern for Office 365 and SharePoint On-premises. One of the branches of the PnP development is in PnP Core CSOM Library.
PnP Core library provides CSOM extension methods for SharePoint 2016 add-in model development. Official documentation can be accessed from here. PnP Core library increases the productivity of the developers by abstracting complex operations. In this article, we will see, how to set up PnP core library remotely and work with SharePoint 2016, using a console Application.
In order to work with PnP Core library, we first have to install the NuGet Package Manager, which is explained in this article.
Once PnP Core Library is added, we can kick off the implementation, using a Console Application.
Project structure
Create a console Application and add the references, given below:
- Microsoft.SharePoint.Client;
- OfficeDevPnP.Core;
Scope of the article will be to perform the operations, given below, using PnP Core CSOM Library:
- Check out the document
- Check in the document
The code blocks for each operation will be given in the sub heading ‘Full Code’. It can be interchangeably placed within the Main function to test the working.
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Microsoft.SharePoint.Client;
- using OfficeDevPnP.Core;
- namespace OfficeDevPnP
- {
- class SP2016
- {
- static void Main(string[] args) {
-
- }
- }
- }
Internal Implementation
Let’s see how to work with PnP Core CSOM Library to perform document Check-in and Check-out in SharePoint 2016.
Checkout the document
Document check out can be implemented, using PnP Core Extension method, as described below:
- Create an instance of the authentication manager, which will be used to create the client context.
-
- OfficeDevPnP.Core.AuthenticationManager authenticationManager = new OfficeDevPnP.Core.AuthenticationManager();
-
- string[] authArray = { "http://sharepoint2016/sites/HOL", "Priyaranjan","password-1","SharePointHOL" };
- Create Client Context by passing the authentication details to the authentication manager object
- var clientContext = authenticationManager.GetNetworkCredentialAuthenticatedContext(authArray[0], authArray[1],authArray[2], authArray[3])
- Check out the document, using the PnP extension method “CheckOutFile”.The method takes the site relative URL of the document as the parameter.
- clientContext.Web.CheckOutFile("/sites/HOL/Shared Documents/Add user to Group Using Nintex.docx")
Output
Upon running the script, the specified file will be checked out and a success message comes in the console.
Going to the library, we can see the checked out document.
Full Code
The full code to check out the file, using PnP Extension method is shown below. Place the code within the main function of the console Application to get it running.
-
- OfficeDevPnP.Core.AuthenticationManager authenticationManager = new OfficeDevPnP.Core.AuthenticationManager();
-
- string[] authArray = {
- "http://sharepoint2016/sites/HOL",
- "Priyaranjan",
- "password-1",
- "SharePointHOL"
- };
- try {
-
- using(var clientContext = authenticationManager.GetNetworkCredentialAuthenticatedContext(authArray[0], authArray[1], authArray[2], authArray[3])) {
-
- clientContext.Web.CheckOutFile("/sites/HOL/Shared Documents/Add user to Group Using Nintex.docx");
- Console.WriteLine("The File has been checked out.");
- Console.ReadLine();
- }
- } catch (Exception ex) {
- Console.WriteLine("Exception : " + ex.Message);
- }
Check In file
The checked-out file can be checked in, using the PnP extension method ‘CheckInFile’. This method takes in the parameters.
- Checked out file Server relative URL.
- Check in Type (MinorCheckIn, MajorCheckIn, OverwriteCheckIn).
- Check in comment.
- clientContext.Web.CheckInFile("/sites/HOL/Shared Documents/Add user to Group Using Nintex.docx", CheckinType.MajorCheckIn,"Checked in") ;
Output
Upon running the script, the checked out file will be checked in and a success message comes in the console.
Going back to the list, we can verify that the document has been checked in.
Full Code
The full code to check in a checked out document is shown below. Place the code within the main function of the console Application to get it running.
-
- OfficeDevPnP.Core.AuthenticationManager authenticationManager = new OfficeDevPnP.Core.AuthenticationManager();
-
- string[] authArray =
- {
- "http://sharepoint2016/sites/HOL",
- "Priyaranjan",
- "password-1",
- "SharePointHOL"
- };
- Try {
-
- using(var clientContext = authenticationManager.GetNetworkCredentialAuthenticatedContext(authArray[0], authArray[1], authArray[2], authArray[3])) {
-
- clientContext.Web.CheckInFile("/sites/HOL/Shared Documents/Add user to Group Using Nintex.docx", CheckinType.MajorCheckIn, "Checked in");
- Console.WriteLine("The File has been checked in.");
- Console.ReadLine();
- }
- } catch (Exception ex)
- {
- Console.WriteLine("Exception : " + ex.Message);
- }
Summary
You can copy paste the ‘Full Code’ fragment into the Main() of the Console Application of the project structure, given at the starting of the article to test it out from your end. Thus, we have seen, how to perform the SharePoint Check-Out and Check-In on a remote desktop, using PnP Core library. In this method, you don’t have to get into the Server, where SharePoint 2016 is installed and enables us to work on a remote desktop, using the efficient and lightweight PnP Core Component Library.