Spring.Core Send comments on this topic.
DelegatingMessageSource Class
See Also  Members  
Spring.Context.Support Namespace : DelegatingMessageSource Class


Empty IMessageSource implementation that simply delegates all method calls to it's parent IMessageSource.

Object Model


Syntax

Visual Basic (Declaration) 
Public Class DelegatingMessageSource 
   Implements IHierarchicalMessageSourceIMessageSource 
Visual Basic (Usage)Copy Code
Dim instance As DelegatingMessageSource
C# 
public class DelegatingMessageSource : IHierarchicalMessageSourceIMessageSource  

Remarks

If no parent IMessageSource is available, no messages will be resolved (and a NoSuchMessageException will be thrown).

Used as placeholder IMessageSource by the AbstractApplicationContext class, if the context definition doesn't define its own IMessageSource. Not intended for direct use in applications.

Inheritance Hierarchy

System.Object
   Spring.Context.Support.DelegatingMessageSource

Requirements

Target Platforms: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 family

See Also