Class UnescapedCharSequence
  
   with escaped chars information.
 
  
  
    Inheritance
    System.Object
    UnescapedCharSequence
   
  
  Assembly: Lucene.Net.QueryParser.dll
  Syntax
  
    public sealed class UnescapedCharSequence : ICharSequence
   
  Constructors
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  UnescapedCharSequence(ICharSequence)
  
  
  Declaration
  
    public UnescapedCharSequence(ICharSequence text)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | ICharSequence | 
        text | 
         | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  UnescapedCharSequence(StringBuilder)
  
  
  Declaration
  
    public UnescapedCharSequence(StringBuilder text)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | StringBuilder | 
        text | 
         | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  UnescapedCharSequence(Char[], Boolean[], Int32, Int32)
  
  
  Declaration
  
    public UnescapedCharSequence(char[] chars, bool[] wasEscaped, int offset, int length)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | System.Char[] | 
        chars | 
         | 
      
      
        | System.Boolean[] | 
        wasEscaped | 
         | 
      
      
        | System.Int32 | 
        offset | 
         | 
      
      
        | System.Int32 | 
        length | 
         | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  UnescapedCharSequence(String)
  
  
  Declaration
  
    public UnescapedCharSequence(string text)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | System.String | 
        text | 
         | 
      
    
  
  Properties
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Item[Int32]
  
  
  Declaration
  
    public char this[int index] { get; }
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | System.Int32 | 
        index | 
         | 
      
    
  
  Property Value
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.Char | 
         | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Length
  
  
  Declaration
  
    public int Length { get; }
   
  Property Value
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.Int32 | 
         | 
      
    
  
  Methods
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  SubSequence(Int32, Int32)
  
  
  Declaration
  
    public ICharSequence SubSequence(int start, int end)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | System.Int32 | 
        start | 
         | 
      
      
        | System.Int32 | 
        end | 
         | 
      
    
  
  Returns
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | ICharSequence | 
         | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ToLower(ICharSequence, CultureInfo)
  
  
  Declaration
  
    public static ICharSequence ToLower(ICharSequence text, CultureInfo locale)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | ICharSequence | 
        text | 
         | 
      
      
        | CultureInfo | 
        locale | 
         | 
      
    
  
  Returns
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | ICharSequence | 
         | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ToString()
  
  
  Declaration
  
    public override string ToString()
   
  Returns
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.String | 
         | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ToStringEscaped()
  
  
  Declaration
  
    public string ToStringEscaped()
   
  Returns
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.String | 
        an escaped  
 | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ToStringEscaped(Char[])
  
  
  Declaration
  
    public ICharSequence ToStringEscaped(char[] enabledChars)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | System.Char[] | 
        enabledChars | 
        array of chars to be escaped 
 | 
      
    
  
  Returns
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | ICharSequence | 
        an escaped  
 | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  WasEscaped(ICharSequence, Int32)
  
  
  Declaration
  
    public static bool WasEscaped(ICharSequence text, int index)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | ICharSequence | 
        text | 
         | 
      
      
        | System.Int32 | 
        index | 
         | 
      
    
  
  Returns
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.Boolean | 
         | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  WasEscaped(Int32)
  
  
  Declaration
  
    public bool WasEscaped(int index)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | System.Int32 | 
        index | 
         | 
      
    
  
  Returns
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.Boolean | 
         |