ComponentDispatcher.RaiseThreadMessage(MSG) Method    
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Indicates that a new message is available for possible handling.
public:
 static bool RaiseThreadMessage(System::Windows::Interop::MSG % msg);
	[System.Security.SecurityCritical]
public static bool RaiseThreadMessage(ref System.Windows.Interop.MSG msg);
	public static bool RaiseThreadMessage(ref System.Windows.Interop.MSG msg);
	[<System.Security.SecurityCritical>]
static member RaiseThreadMessage : MSG -> bool
	static member RaiseThreadMessage : MSG -> bool
	Public Shared Function RaiseThreadMessage (ByRef msg As MSG) As Boolean
	Parameters
- msg
 - MSG
 
The message and its associated data.
Returns
true, if one of the modules listening to the message loop processed the message. The owner of the message loop should ignore the message. false, if the message was not processed. In this case, the owner of the message pump should call the Win32 function TranslateMessage followed by DispatchMessage.
- Attributes
 
Remarks
The owner of the message pump should call this method for every keyboard message.