本文整理汇总了C#中DotNetWikiBot.Page.CorrectNsPrefix方法的典型用法代码示例。如果您正苦于以下问题:C# Page.CorrectNsPrefix方法的具体用法?C# Page.CorrectNsPrefix怎么用?C# Page.CorrectNsPrefix使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类DotNetWikiBot.Page
的用法示例。
在下文中一共展示了Page.CorrectNsPrefix方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: Contains
/// <summary>This function returns true, if this PageList contains page with the same title
/// and same revision ID with page passed as a parameter. Before comparison this function
/// corrects all namespace prefixes in this PageList and in title of Page passed
/// as a parameter.</summary>
/// <param name="page">Page object to search for in this PageList.</param>
/// <returns>Returns bool value.</returns>
public bool Contains(Page page)
{
page.CorrectNsPrefix();
CorrectNsPrefixes();
foreach (Page p in pages)
if (p.title == page.title && p.revision == page.revision)
return true;
return false;
}