Steps
- Open Visual Studio in your system.
- Select Console Applciation template and give as name "GetallList"
- Add a Microsoft.Cleint Assembly refrence file in right side refrence tab in visual studio.
- Replace Program.cs with the source code below.
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using Microsoft.SharePoint.Client;
- namespace GetallList
- {
- class Program
- {
- static void Main(string[] args)
- {
- // ClientContext - Get the context for the SharePoint Site
- ClientContext clientContext = new ClientContext("http://gauti.sharepoint.com/sites/SP");
- /Pass the credentials for whom we need to get the count of followed
- documents
- / / By
- default It will take current user who runs this application - Here it
- will take Administrator because the application is running with that account
- clientContext.Credentials = new NetworkCredential("Gowtham", "paswword5", "SP2013");
- // Get the SocialFollowingManager instance
- // Provides methods for managing a user's list of followed actors (users,documents, sites, and tags)
- SocialFollowingManager followingManager = new SocialFollowingManager(clientContext);
- // Get the count of followed documents
- ClientResult < int > followingCount = followingManager.GetFollowedCount(SocialActorTypes.Sites);
- // Execute the query to the server
- clientContext.ExecuteQuery();
- // Display the count of followed documents
- Console.WriteLine("Count of followed documents: " + followingCount.Value);
- Console.ReadLine();
- }
- }
- }
Output
Hit F5 and Check the Output.
Hope you have enjoyed this.!!:-)
***********************100 Blogs in SharePoint *********************
I have reached 100 blogs in SharePoint .Thanks to C# Corner Team for encouraged me.And thanks to everyone those who all are supported me.

Gowtham RajamanickamPosted Aug 24, 2015, 9:34 AM
THanks vijay
Vijay SPosted Jun 17, 2015, 8:56 AM
Good one