NotifyMessage() public method

public NotifyMessage ( bool start, IMessage msg, bool client_site, bool async ) : void
start bool
msg IMessage
client_site bool
async bool
return void
Beispiel #1
0
 internal void NotifyDynamicSinks(bool start, IMessage req_msg, bool client_site, bool async)
 {
     if (context_dynamic_properties != null && context_dynamic_properties.HasProperties)
     {
         context_dynamic_properties.NotifyMessage(start, req_msg, client_site, async);
     }
 }
Beispiel #2
0
 internal static void NotifyGlobalDynamicSinks(bool start, IMessage req_msg, bool client_site, bool async)
 {
     if (global_dynamic_properties != null && global_dynamic_properties.HasProperties)
     {
         global_dynamic_properties.NotifyMessage(start, req_msg, client_site, async);
     }
 }