EngineAsyncTHierarchyItemAsyncRunAsync Method
IT Hit WebDAV Classes Reference
Processes request and generates response.
Namespace:
ITHit.Server
Assembly:
ITHit.Server (in ITHit.Server.dll) Version: 13.3.13068
Syntax public abstract Task RunAsync(
ContextAsync<THierarchyItemAsync> context
)
Public MustOverride Function RunAsync (
context As ContextAsync(Of THierarchyItemAsync)
) As Task
public:
virtual Task^ RunAsync(
ContextAsync<THierarchyItemAsync>^ context
) abstract
abstract RunAsync :
context : ContextAsync<'THierarchyItemAsync> -> Task
Parameters
- context
- Type: ITHit.ServerContextAsyncTHierarchyItemAsync
Instance of your context class derived from ContextAsyncTHierarchyItem class.
Return Value
Type:
Task .
Remarks
You must call this method in each request to your server passing your
context class derived from
ContextAsyncTHierarchyItem as input parameter.
See Also