IdeaBlade Application Framework
Forward Method
See Also  Send Feedback
Caliburn.Micro.Extensions Namespace > EventFns Class : Forward Method



source
An instance of the EventAggregator class.
handler
The object to handle the message.
message
The message to be forwarded.
Forwards a given message to the specified handler. The handler must implement the corresponding IHandle interface for the message to be delivered.

Syntax

Visual Basic (Declaration) 
<ExtensionAttribute()>
Public Shared Sub Forward( _
   ByVal source As Caliburn.Micro.IEventAggregator, _
   ByVal handler As Object, _
   ByVal message As Object _
) 
Visual Basic (Usage)Copy Code
Dim source As Caliburn.Micro.IEventAggregator
Dim handler As Object
Dim message As Object
 
EventFns.Forward(source, handler, message)
C# 
[ExtensionAttribute()]
public static void Forward( 
   Caliburn.Micro.IEventAggregator source,
   object handler,
   object message
)
C++/CLI 
[ExtensionAttribute()]
public:
static void Forward( 
   Caliburn.Micro.IEventAggregator^ source,
   Object^ handler,
   Object^ message
) 

Parameters

source
An instance of the EventAggregator class.
handler
The object to handle the message.
message
The message to be forwarded.

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, Windows Vista, Windows Server 2008 family

See Also

© 2012 All Rights Reserved.