示例#1
0
 /// <summary>
 /// Get a list of discussions about this wiki page.
 /// </summary>
 /// <param name="page"></param>
 /// <param name="max">Maximum number of records to return.  -1 for unlimited.</param>
 public Listing <Post> GetPageDiscussions(string page, int max = -1) => Listing <Post> .Create(WebAgent, WikiPageDiscussionsUrl(page), max, 100);
示例#2
0
 /// <summary>
 /// Get a list of revisions for this wiki.
 /// </summary>
 /// <param name="max">Maximum number of records to return.  -1 for unlimited.</param>
 public Listing <WikiPageRevision> GetRevisions(int max = -1) => Listing <WikiPageRevision> .Create(WebAgent, WikiRevisionsUrl, max, 100);
示例#3
0
 /// <summary>
 /// Get a <see cref="Listing{T}"/> of posts made for this domain.
 /// </summary>
 /// <param name="max">Maximum number of records to return.  -1 for unlimited.</param>
 public Listing <Post> GetPosts(int max = -1) => Listing <Post> .Create(WebAgent, DomainPostUrl, max, 100);
示例#4
0
 /// <summary>
 /// Get a list of revisions for a give wiki page.
 /// </summary>
 /// <param name="page">wiki page</param>
 /// <param name="max">Maximum number of records to return.  -1 for unlimited.</param>
 public Listing <WikiPageRevision> GetPageRevisions(string page, int max = -1) => Listing <WikiPageRevision> .Create(WebAgent, WikiPageRevisionsUrl(page), max, 100);
示例#5
0
 /// <summary>
 /// Get a <see cref="Listing{T}"/> of posts made for this domain that are in the new queue.
 /// </summary>
 public Listing <Post> GetNew(int max = -1) => Listing <Post> .Create(WebAgent, DomainNewUrl, max, 100);