Fork me on GitHub
  • API

    Show / Hide Table of Contents

    Class HTMLStripCharFilter

    A Lucene.Net.Analysis.CharFilter that wraps another System.IO.TextReader and attempts to strip out HTML constructs.

    Inheritance
    System.Object
    System.MarshalByRefObject
    System.IO.TextReader
    Lucene.Net.Analysis.CharFilter
    BaseCharFilter
    HTMLStripCharFilter
    Implements
    System.IDisposable
    Inherited Members
    BaseCharFilter.Correct(Int32)
    BaseCharFilter.LastCumulativeDiff
    BaseCharFilter.AddOffCorrectMap(Int32, Int32)
    Lucene.Net.Analysis.CharFilter.m_input
    CharFilter.CorrectOffset(Int32)
    CharFilter.Skip(Int32)
    Lucene.Net.Analysis.CharFilter.Reset()
    Lucene.Net.Analysis.CharFilter.IsReady
    Lucene.Net.Analysis.CharFilter.IsMarkSupported
    CharFilter.Mark(Int32)
    System.IO.TextReader.Null
    System.IO.TextReader.Close()
    System.IO.TextReader.Dispose()
    System.IO.TextReader.Peek()
    System.IO.TextReader.ReadAsync(System.Char[], System.Int32, System.Int32)
    System.IO.TextReader.ReadBlock(System.Char[], System.Int32, System.Int32)
    System.IO.TextReader.ReadBlockAsync(System.Char[], System.Int32, System.Int32)
    System.IO.TextReader.ReadLine()
    System.IO.TextReader.ReadLineAsync()
    System.IO.TextReader.ReadToEnd()
    System.IO.TextReader.ReadToEndAsync()
    System.IO.TextReader.Synchronized(System.IO.TextReader)
    System.MarshalByRefObject.GetLifetimeService()
    System.MarshalByRefObject.InitializeLifetimeService()
    System.MarshalByRefObject.MemberwiseClone(System.Boolean)
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.ToString()
    Namespace: Lucene.Net.Analysis.CharFilters
    Assembly: Lucene.Net.Analysis.Common.dll
    Syntax
    public sealed class HTMLStripCharFilter : BaseCharFilter, IDisposable

    Constructors

    | Improve this Doc View Source

    HTMLStripCharFilter(TextReader)

    Creates a new HTMLStripCharFilter over the provided TextReader.

    Declaration
    public HTMLStripCharFilter(TextReader source)
    Parameters
    Type Name Description
    System.IO.TextReader source

    System.IO.TextReader to strip html tags from.

    | Improve this Doc View Source

    HTMLStripCharFilter(TextReader, ICollection<String>)

    Creates a new HTMLStripCharFilter over the provided System.IO.TextReader with the specified start and end tags.

    Declaration
    public HTMLStripCharFilter(TextReader source, ICollection<string> escapedTags)
    Parameters
    Type Name Description
    System.IO.TextReader source

    System.IO.TextReader to strip html tags from.

    System.Collections.Generic.ICollection<System.String> escapedTags

    Tags in this set (both start and end tags) will not be filtered out.

    Methods

    | Improve this Doc View Source

    Dispose(Boolean)

    Declaration
    protected override void Dispose(bool disposing)
    Parameters
    Type Name Description
    System.Boolean disposing
    Overrides
    CharFilter.Dispose(Boolean)
    | Improve this Doc View Source

    Read()

    Declaration
    public override int Read()
    Returns
    Type Description
    System.Int32
    Overrides
    Lucene.Net.Analysis.CharFilter.Read()
    | Improve this Doc View Source

    Read(Char[], Int32, Int32)

    Declaration
    public override int Read(char[] cbuf, int off, int len)
    Parameters
    Type Name Description
    System.Char[] cbuf
    System.Int32 off
    System.Int32 len
    Returns
    Type Description
    System.Int32
    Overrides
    CharFilter.Read(Char[], Int32, Int32)

    Implements

    System.IDisposable
    • Improve this Doc
    • View Source
    Back to top Copyright © 2020 The Apache Software Foundation, Licensed under the Apache License, Version 2.0
    Apache Lucene.Net, Lucene.Net, Apache, the Apache feather logo, and the Apache Lucene.Net project logo are trademarks of The Apache Software Foundation.
    All other marks mentioned may be trademarks or registered trademarks of their respective owners.