Ambient Data Framework .NET API
The Ambient Data Framework .NET API provides a limited set of functionality. For example, to develop Claim Processors, you need the Java API. This topic lists the main classes and interfaces of the .NET API.
| Class | Description |
|---|---|
HttpModule | Module that is called by the application server when request and session events occur. |
ClaimStore | Container that holds the current values of a set of Claims. |
AmbientDataContext | Provides access to the current Claim Store object. |
- HttpModule
-
The
HttpModuleis called by the application server when certain events happen, such as when a request is received, a request has been handled, a new session has been created, a session is about to be destroyed.
- ClaimStore
ClaimStorerepresents a repository in which the current values of Claims are stored. There is aClaimStorefor each visitor session. The engine stores the Claim Store in the session and retrieves it from the session when needed.- AmbientDataContext
-
The
AmbientDataContextclass provides access to the Claim Store. TheAmbientDataContext.CurrentClaimStoreproperty refers to the current Claim Store object which you can use to get and set Claim values.