Click or drag to resize

PostUploadProgressModule Class

IT Hit WebDAV Classes Reference
Enables POST upload with progress of files to IIS/ASP.NET.
Inheritance Hierarchy
SystemObject
  ITHit.WebDAV.ServerPostUploadProgressModule

Namespace:  ITHit.WebDAV.Server
Assembly:  ITHit.Server.Web (in ITHit.Server.Web.dll) Version: 13.3.13068
Syntax
public class PostUploadProgressModule : IHttpModule

The PostUploadProgressModule type exposes the following members.

Constructors
  NameDescription
Public methodPostUploadProgressModule
Initializes a new instance of the PostUploadProgressModule class
Top
Methods
  NameDescription
Public methodEquals
Determines whether the specified object is equal to the current object.
(Inherited from Object.)
Protected methodFinalize
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection.
(Inherited from Object.)
Public methodGetHashCode
Serves as the default hash function.
(Inherited from Object.)
Public methodGetType
Gets the Type of the current instance.
(Inherited from Object.)
Protected methodMemberwiseClone
Creates a shallow copy of the current Object.
(Inherited from Object.)
Public methodToString
Returns a string that represents the current object.
(Inherited from Object.)
Top
Remarks

You need to use this module if you are using AJAX File Browser with Internet Explorer 9 and earlier.

Examples
Example of configuration for IIS:
<httpModules>
    <remove name="FileAuthorization"/>
    <add 
        name="PostUploadProgressModule"
        type="ITHit.WebDAV.Server.PostUploadProgressModule, ITHit.WebDAV.Server" />
</httpModules>
See Also