WikiFunctions.Parse.HideText.HideMore C# (CSharp) Метод

HideMore() публичный Метод

Hides images, external links, templates, headings
public HideMore ( string articleText ) : string
articleText string the text of the article
Результат string
        public string HideMore(string articleText)
        {
            return HideMore(articleText, false, true, true);
        }

Same methods

HideText::HideMore ( string articleText, bool hideOnlyTargetOfWikilink ) : string
HideText::HideMore ( string articleText, bool hideOnlyTargetOfWikilink, bool hideWikiLinks ) : string
HideText::HideMore ( string articleText, bool hideOnlyTargetOfWikilink, bool hideWikiLinks, bool hideItalics ) : string

Usage Example

 private string HideMore(string text, bool hideExternalLinks, bool leaveMetaHeadings, bool hideImages)
 {
     Hider = new HideText(hideExternalLinks, leaveMetaHeadings, hideImages);
     string s = Hider.HideMore(text);
     Assert.AreEqual(text, Hider.AddBackMore(s));
     return s;
 }
All Usage Examples Of WikiFunctions.Parse.HideText::HideMore