コード例 #1
0
ファイル: WebDAVModule.cs プロジェクト: varunrl/xDav
        /// <summary>
        /// WebDAV Http Module
        /// </summary>
        /// <param name="sourceAssembly">
        /// Assembly containing the base class implementations
        /// </param>
        /// <param name="moduleAuthentication">
        /// Authentication to use during requests
        /// </param>
        public WebDAVModule(Assembly sourceAssembly, Authentication moduleAuthentication)
        {
            this.__sourceAssembly       = sourceAssembly;
            this.__moduleAuthentication = moduleAuthentication;
            this.__webDavProcessor      = new WebDavProcessor(sourceAssembly);

            //Set the default
            this.DebugFilePath = Settings.Default.WebDAVDebugOutputFilePath;
        }
コード例 #2
0
ファイル: WebDAVModule.cs プロジェクト: Fedorm/core-master
		/// <summary>
		/// WebDAV Http Module
		/// </summary>
		/// <param name="sourceAssembly">
		/// Assembly containing the base class implementations
		/// </param>
		/// <param name="moduleAuthentication">
		/// Authentication to use during requests
		/// </param>
		public WebDAVModule(Assembly sourceAssembly, Authentication moduleAuthentication)
		{
			this.__sourceAssembly = sourceAssembly;
			this.__moduleAuthentication = moduleAuthentication;
			this.__webDavProcessor = new WebDavProcessor(sourceAssembly);

			//Set the default
			this.DebugFilePath = Settings.Default.WebDAVDebugOutputFilePath;
		}