Esempio n. 1
0
 public WebDAVLockHandler(WebDAVServerConnector connector, WebDAVPropertyHandler property_handler, string sub_domain, string initial_local_path) 
 {
     m_WebDAVServerConnector = connector;
     m_WebDAVPropertyHandler = property_handler;
     m_SubDomain = sub_domain;
     m_InitialLocalPath = initial_local_path;
 }
        private string                  m_InitialLocalPath; // - the path in the inventory that webdav operations operate 
                                                            // for example "/avatar/" or "/"

        public WebDAVPropertyHandler(WebDAVServerConnector connector,
                                     IInventoryService inventory_service,
                                     IAssetService asset_service,
                                     IPropertyProvider property_provider,
                                     WebDAVLockHandler lock_handler,
                                     string domain,
                                     string local_initial_path) 
        {
            m_WebDAVServerConnector     = connector;
            m_InventoryService          = inventory_service;
            m_AssetService              = asset_service;
            m_PropertyProvider          = property_provider;
            m_SubDomain                 = domain;
            m_InitialLocalPath          = local_initial_path;
            m_LockHandler               = lock_handler;
        }