Namespace: ITHit.Server
public abstract class ContextCoreAsync<THierarchyItemAsync> : ContextAsync<THierarchyItemAsync> where THierarchyItemAsync : IHierarchyItemBase
The ContextCoreAsyncTHierarchyItemAsync type exposes the following members.
Name | Description | |
---|---|---|
ContextCoreAsyncTHierarchyItemAsync |
Initializes new instance of the ContextCoreAsyncTHierarchyItemAsync class. Uses HttpContext to populate its request and response.
|
Name | Description | |
---|---|---|
Engine |
Instance of Engine which is currently executing the request.
(Inherited from ContextAsyncTHierarchyItem.) | |
Exception |
Exception which occurred during request execution.
(Inherited from ContextAsyncTHierarchyItem.) | |
Request |
Object representing current request.
(Inherited from ContextAsyncTHierarchyItem.) | |
Response |
Object representing current response.
(Inherited from ContextAsyncTHierarchyItem.) |
Name | Description | |
---|---|---|
BeforeResponseAsync |
This method is called right before engine starts writing response.
(Inherited from ContextAsyncTHierarchyItem.) | |
EnsureBeforeResponseWasCalledAsync |
Calls BeforeResponseAsync only first time this method is invoked.
(Inherited from ContextAsyncTHierarchyItem.) | |
Equals | Determines whether the specified object is equal to the current object. (Inherited from Object.) | |
Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) | |
GetHashCode | Serves as the default hash function. (Inherited from Object.) | |
GetHierarchyItemAsync |
Implementation of this abstract method is used by the engine to find hierarchy item objects by path.
(Inherited from ContextAsyncTHierarchyItem.) | |
GetType | Gets the Type of the current instance. (Inherited from Object.) | |
MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) | |
ToString | Returns a string that represents the current object. (Inherited from Object.) |
You must create a new instance of your class derived from this class in each request to your WebDAV server.
Provides constructor that takes HttpContext.