public MessagingServiceInPostHandler (string url, IRegistryCore registry, MessagingServiceInHandler handler, string SessionID) :
         base("POST", url)
 {
     m_handler = handler;
     m_SessionID = SessionID;
     ulong.TryParse (SessionID, out m_ourRegionHandle);
 }
Example #2
0
 public MessagingServiceInPostHandler(string url, IRegistryCore registry, MessagingServiceInHandler handler, ulong handle) :
     base("POST", url)
 {
     m_handler         = handler;
     m_ourRegionHandle = handle;
 }
 public MessagingServiceInPostHandler(string url, IRegistryCore registry, MessagingServiceInHandler handler, ulong handle) :
         base("POST", url)
 {
     m_handler = handler;
     m_ourRegionHandle = handle;
 }