public SimpleOSDMapHandler(string httpmethod, string path, IServiceAuth auth, SimpleOSDMapMethod processRequest, string name)
     : base(path, name)
 {
     m_httMethod      = httpmethod.ToUpper();
     m_Auth           = auth;
     m_processRequest = processRequest;
 }
 public SimpleOSDMapHandler(string httpmethod, string path, SimpleOSDMapMethod processRequest) : base(path)
 {
     m_httMethod      = httpmethod.ToUpper();
     m_processRequest = processRequest;
 }