Class Message
  
  Default implementation of Message interface.
For Native Language Support (NLS), system of software internationalization.
 
  
  
    Inheritance
    System.Object
    Message
   
  
  
  Assembly: Lucene.Net.QueryParser.dll
  Syntax
  
    public class Message : object, IMessage
   
  Constructors
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Message(String)
  
  
  Declaration
  
    public Message(string key)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | System.String | 
        key | 
         | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Message(String, Object[])
  
  
  Declaration
  
    public Message(string key, params object[] args)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | System.String | 
        key | 
         | 
      
      
        | System.Object[] | 
        args | 
         | 
      
    
  
  Properties
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  Key
  
  
  Declaration
  
    public virtual string Key { get; }
   
  Property Value
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.String | 
         | 
      
    
  
  Methods
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  GetArguments()
  
  
  Declaration
  
    public virtual object[] GetArguments()
   
  Returns
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.Object[] | 
         | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  GetLocalizedMessage()
  
  
  Declaration
  
    public virtual string GetLocalizedMessage()
   
  Returns
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.String | 
         | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  GetLocalizedMessage(CultureInfo)
  
  
  Declaration
  
    public virtual string GetLocalizedMessage(CultureInfo locale)
   
  Parameters
  
    
      
        | Type | 
        Name | 
        Description | 
      
    
    
      
        | CultureInfo | 
        locale | 
         | 
      
    
  
  Returns
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.String | 
         | 
      
    
  
  
    |
    Improve this Doc
  
  
    View Source
  
  
  ToString()
  
  
  Declaration
  
    public override string ToString()
   
  Returns
  
    
      
        | Type | 
        Description | 
      
    
    
      
        | System.String | 
         | 
      
    
  
  Implements