Click or drag to resize

FndActivityContext Class

ActivityContext provides fuctionality for server interaction within an activity. An object of this instance can be activated with an URL containing information for the generated RequestContext that will be generated for the server invokes.
Inheritance Hierarchy

Namespace:  Ifs.Fnd.AccessProvider.Activity
Assembly:  Ifs.Fnd.AccessProvider (in Ifs.Fnd.AccessProvider.dll) Version: 4.52.10.0 (10.2.2.9999)
Syntax
C#
public class FndActivityContext : Component

The FndActivityContext type exposes the following members.

Constructors
  NameDescription
Public methodFndActivityContext
Initializes a new instance of the FndActivityContext class
Public methodFndActivityContext(IContainer)
Initializes a new instance of the FndActivityContext class and associates it with the specified container.
Public methodFndActivityContext(FndActivityContext)
Constructor using other FndActivityContext for connection initialization
Public methodFndActivityContext(FndActivityContext, IContainer)
Constructor using other FndActivityContext for connection initialization
Public methodFndActivityContext(FndConnection, FndUrlAddress)
Initializes a new instance of the FndActivityContext class
Public methodFndActivityContext(FndConnection, String)
Initializes a new instance of the FndActivityContext class
Public methodFndActivityContext(FndConnection, FndUrlAddress, IContainer)
Initializes a new instance of the FndActivityContext class
Public methodFndActivityContext(FndConnection, String, IContainer)
Initializes a new instance of the FndActivityContext class
Top
Properties
  NameDescription
Public propertyApplicationContext
Gets the ApplicationContext available for this activity context
Public propertyCallerInformation
Caller information, used for debugging
Public propertyInteractiveMode
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;
Public propertyPlSqlContext
Gets the PlSqlContext available for this activity context
Public propertyUrl
Gets the url string that activated this activity context
Public propertyUrlAddress
Gets the url address object that activated this activity context
Top
Methods
  NameDescription
Public methodCopyFrom
Copies information from an existing FndActivityContext
Public methodEnableGenericAspect
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.
Public methodInvoke(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.
Public methodInvoke(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.
Public methodInvoke(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.
Public methodInvokeIntegration(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.
Public methodInvokeIntegration(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.
Public methodInvokeSync(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
Public methodInvokeSync(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
Top
See Also