To access the Note Board, you will need to work with the SocialCommentManager class. See the documentation on MSDN: http://msdn.microsoft.com/en-us/library/microsoft.office.server.socialdata.socialcommentmanager_members
There are a number of different methods available for loading the comments.
- GetComments(Uri) Retrieves all of the social comments created for the
specified URL.
- GetComments(UserProfile) Retrieves all of the social
comments created by the specified user.
- GetComments(Uri,
Int32) Retrieves all of the social comments created for the specified
URL, up to the specified maximum number.
- GetComments(UserProfile,
Int32) Retrieves social comments created by the specified user, up to
the specified maximum number to retrieve.
- GetComments(UserProfile,
Uri) Retrieves all of the social comments created by the specified
user for the specified URL.
- GetComments(Uri, Int32, Int32) Retrieves
all of the social comments created for the specified URL, up to the
specified maximum number and starting at the specified zero-based
index.
- GetComments(UserProfile, Int32, Int32) Retrieves social
comments created by the specified user, up to the specified maximum
number to retrieve, and starting at the specified zero-based index.
- GetComments(Uri, Int32, Int32, DateTime) Retrieves all of the social
comments created for the specified URL and last modified after the
specified time, up to the specified maximum number and starting at
the specified zero-based index.