FndActivityContext Class |
Namespace: Ifs.Fnd.AccessProvider.Activity
public class FndActivityContext : Component
The FndActivityContext type exposes the following members.
| Name | Description | |
|---|---|---|
| FndActivityContext |
Initializes a new instance of the FndActivityContext class
| |
| FndActivityContext(IContainer) |
Initializes a new instance of the FndActivityContext class and associates it with the specified container.
| |
| FndActivityContext(FndActivityContext) |
Constructor using other FndActivityContext for connection initialization
| |
| FndActivityContext(FndActivityContext, IContainer) |
Constructor using other FndActivityContext for connection initialization
| |
| FndActivityContext(FndConnection, FndUrlAddress) |
Initializes a new instance of the FndActivityContext class
| |
| FndActivityContext(FndConnection, String) |
Initializes a new instance of the FndActivityContext class
| |
| FndActivityContext(FndConnection, FndUrlAddress, IContainer) |
Initializes a new instance of the FndActivityContext class
| |
| FndActivityContext(FndConnection, String, IContainer) |
Initializes a new instance of the FndActivityContext class
|
| Name | Description | |
|---|---|---|
| ApplicationContext |
Gets the ApplicationContext available for this activity context
| |
| CallerInformation |
Caller information, used for debugging
| |
| InteractiveMode |
Tell if the server connection should allow any UI to show during a call to invoke.
This should only be changed temporary for some specific use cases. The caller is
responsible to reset the value to the former value when done.
Example:
bool interactiveMode = fndActivityContext1.InteractiveMode;
fndActivityContext1.InteractiveMode = false;
fndActivityContext1.Invoke(...);
fndActivityContext1.InteractiveMode = interactiveMode;
| |
| PlSqlContext |
Gets the PlSqlContext available for this activity context
| |
| Url |
Gets the url string that activated this activity context
| |
| UrlAddress |
Gets the url address object that activated this activity context
|
| Name | Description | |
|---|---|---|
| CopyFrom |
Copies information from an existing FndActivityContext
| |
| EnableGenericAspect |
Enables an Aspect for this activity context.
Enabling an aspect tells the server layer that a configured aspect for the entity view should be included
if existing.
| |
| Invoke(String, String, Object) |
Performes an server invocation. The request context for this invokation will be generated from the URL that this object was activated with.
| |
| Invoke(String, String, Object, Object) |
Performes an server invocation. The request context for this invokation will be generated from the URL that this object was activated with.
| |
| Invoke(String, String, Object, Object, String) |
Performes an server invocation. The request context for this invokation will be generated from the URL that this object was activated with.
| |
| InvokeIntegration(String, String, Object) |
Performes a server invocation. The request context for this invocation will be generated from the URL that this object was activated with.
The call will be made through the server gateway.
| |
| InvokeIntegration(String, String, Object, Object) |
Performes a server invocation. The request context for this invocation will be generated from the URL that this object was activated with.
The call will be made through the server gateway.
| |
| InvokeSync(String, String, Object) |
Performes an server invocation. The request context for this invokation will be generated from the URL that this object was activated with.
This is ignores the value of AsynchronousMode and calls are made as AsynchronousMode was false
| |
| InvokeSync(String, String, Object, Object) |
Performes an server invocation. The request context for this invokation will be generated from the URL that this object was activated with.
This is ignores the value of AsynchronousMode and calls are made as AsynchronousMode was false
|