| Name | Description |
---|
  | ActivityIsTemplate | |
 | AddTransitionEventDefinitionLink(Int32, Int32) | |
  | AddTransitionEventDefinitionLink(Int32, Int32, SqlConnection, SqlTransaction) | |
 | BuildCacheKey |
Builds a cache key for use with GetFromCacheIfPresent.
The cache key is not hashed because we have experienced a collision using GetHashCode()
ie. the cache keys are quite long and there is a price in dictionary size in memory
and in dictionary lookups.
(Inherited from ControllerBase.) |
 | CheckAssigneeConstraints(Int32, Int32) | |
  | CheckAssigneeConstraints(Int32, Int32, SqlConnection, SqlTransaction) |
Checks whether an assignee constraint prevents an activity from being completed by a given user.
Returns true, if the user IS allowed to complete the activity.
|
 | CheckObjectOperationSecurity |
Checks that the active user is allowed to perform an CRUD operation on a specific configuration object.
(note: except that a Create operation is not for a specific object).
Throws a SecurityException if not.
Method can be used for all configuration objects that are represented by a ConfigurationObjectType (except those that have a compound key).
Method checks auth role security as well as whether it is allowed to modify builtin/feature package objects.
(Inherited from ControllerBase.) |
 | CheckObjectSaveOperationSecurity |
Checks that the active user is allowed to Create a new - or Update an existing configuration object.
Throws a SecurityException if not.
Method can be used for all configuration objects that are represented by a ConfigurationObjectType (except those that have a compound key).
Method checks auth role security as well as whether it is allowed to modify builtin/feature package objects.
(Inherited from ControllerBase.) |
 | CloneProcessTemplate(Int32) |
Opretter en process template som en kopi (klon) af en eksisterende process template.
Process id'et for den nye process template returneres.
|
  | CloneProcessTemplate(Int32, SqlConnection, SqlTransaction) | Obsolete. |
 | CompleteFirstActivity |
Completes the first activity in an active process instance.
The activity must only have one outgoing transition.
|
  | ControlElementIsTemplate | |
 | ConvertId(Int32, ConfigurationObjectType) |
Converts the integer id of an object to its transport-safe unique id (UId).
(Inherited from ControllerBase.) |
 | ConvertId(String, ConfigurationObjectType) |
Converts a string representation of an integer or Guid id to an integer id.
(Inherited from ControllerBase.) |
 | ConvertId(Guid, ConfigurationObjectType, Boolean) |
Converts the transport-safe unique id (UId) of an object to its integer id.
(Inherited from ControllerBase.) |
 | ConvertIds(IEnumerableGuid, ConfigurationObjectType) |
Converts the transport-safe unique ids (UId) of a number of objects to integer ids.
(Inherited from ControllerBase.) |
 | ConvertIds(IEnumerableInt32, ConfigurationObjectType) |
Converts the integer ids of a number of objects to their transport-safe unique ids (UId).
(Inherited from ControllerBase.) |
 | CreateAndRouteProcess(Process, ProcessSaveAndRouteOptions) | |
  | CreateAndRouteProcess(Process, ProcessSaveAndRouteOptions, SqlConnection, SqlTransaction) |
CreateAndRouteProcess is specifically designed to be used in workitemdlg.aspx.
It creates a new process instance and routes it by activating a transition.
|
 | CreateCommand(SQLBuilder) | (Inherited from ControllerBase.) |
 | CreateCommand(String) | (Inherited from ControllerBase.) |
 | CreateProcessInstance(Int32, InstantiateProcessOptions) | |
  | CreateProcessInstance(Int32, InstantiateProcessOptions, SqlConnection, SqlTransaction) |
Creates a process instance of a process template.
|
 | CreateSqlBulkCopy |
Create a new SqlBulkCopy instance using the connection, transaction and timeout values from the controller
(Inherited from ControllerBase.) |
 | DecrementTransitionVOrder(Int32) | |
  | DecrementTransitionVOrder(Int32, SqlConnection, SqlTransaction) | |
 | DeleteControlElement(Int32) | |
  | DeleteControlElement(Int32, SqlConnection, SqlTransaction) |
Deletes the specified ControlElement.
|
 | DeleteIrrelevantWorkItems | |
  | DeleteIrrelevantWorkItems(SqlConnection, SqlTransaction) | Obsolete.
Deletes workitems which:
- have been marked as deleted
- never have been accepted
- no actions have been made on.
The method is used for cleanup.
|
 | DeleteTransition(Int32) | |
  | DeleteTransition(Int32, Boolean, SqlConnection, SqlTransaction) |
Deletes the specified Transition
|
 | DeleteTransitionEventDefinition(Int32, Int32) | |
  | DeleteTransitionEventDefinition(Int32, Int32, SqlConnection, SqlTransaction) |
Hvis transition tilhører en process template slettes eventdefinition helt.
Hvis ikke slettes kun referencen til eventdefinitionen.
|
 | DoInConnection(ControllerBaseActionWithNoResult) |
Executes an action that doesn't return a result. If no current connection exists, it will establish a connection to the database and close it afterwards.
An existing connection will be reused. Inside the action, the connection is available as DbConnection.
(Inherited from ControllerBase.) |
 | DoInConnection(ActionSqlConnection, SqlTransaction, Boolean) |
Executes an action that doesn't return a result. If no current connection exists, it will establish a connection to the database and close it afterwards.
Connection and Transaction are passed to delegate, to allow passing to other controllers
An existing connection will be reused. Inside the action, the connection is available as DbConnection.
To ensure a new connection set forceNew to true.
(Inherited from ControllerBase.) |
 | DoInConnectionT(ControllerBaseActionWithResultT) |
Executes an action and returns the result.
If no current connection exists, it will establish a connection to the database and close it afterwards.
An existing connection will be reused. Inside the action, the connection is available as DbConnection.
(Inherited from ControllerBase.) |
 | DoInTransaction(ControllerBaseActionWithNoResult) |
Executes an action (that doesn't return a result) in a transaction.
If no current connection and/or transaction exists, it will establish it and commit and close it afterwards.
An existing connection/transaction will be reused.
Inside the action, the connection is available as DbConnection and
the transaction as DbTransaction.
(Inherited from ControllerBase.) |
 | DoInTransactionT(ControllerBaseActionWithResultT) |
Executes an action in a transaction and returns the result.
If no current connection and/or transaction exists, it will establish it and commit and close it afterwards.
An existing connection/transaction will be reused.
Inside the action, the connection is available as DbConnection and
the transaction as DbTransaction.
(Inherited from ControllerBase.) |
 | DoInTransactionT(FuncSqlConnection, SqlTransaction, T, Boolean) |
Executes an action in a transaction and returns the result.
Connection and Transaction are passed to delegate, to allow passing to other controllers
If no current connection and/or transaction exists, it will establish it and commit and close it afterwards.
An existing connection/transaction will be reused. Set forceNew to true to ensure new connection and transaction
Inside the action, the connection is available as DbConnection and
the transaction as DbTransaction.
(Inherited from ControllerBase.) |
 | DoInTransactionUnlessPostponedDueToPreviousDefaultResultT |
The method can postpone a SQL transaction implemented by action if the method returns a default number, eg. 0.
If the the action method throws a SQL transitent error, then the next call to action is also postponed.
(Inherited from ControllerBase.) |
 | DoUnlessPostponedDueToPreviousDefaultResultT |
The method can postpone a method invocation if the previous call returned a default number, eg. 0.
(Inherited from ControllerBase.) |
 | ExecScalarResultQueryT |
Executes a query with a scalar result.
(Inherited from ControllerBase.) |
 | ExecuteMutexOperation(String, Action, Boolean) | (Inherited from ControllerBase.) |
 | ExecuteMutexOperationT(String, FuncT, Boolean) | (Inherited from ControllerBase.) |
 | ExpireCacheItem | (Inherited from ControllerBase.) |
 | GetActiveProcessesForTarget | |
 | GetActiveWorkItemsForTargetDataObject(Int32) |
Gets active work items for the active user.
|
  | GetActiveWorkItemsForTargetDataObject(Int32, SqlConnection, SqlTransaction) | |
 | GetActivitiesWithAssigneeRuleUpdateRight(IntegerList, Int32) | |
  | GetActivitiesWithAssigneeRuleUpdateRight(IntegerList, Int32, SqlConnection, SqlTransaction) | |
 | GetActivityAssigneeRules(Int32) | |
  | GetActivityAssigneeRules(Int32, SqlConnection, SqlTransaction) | |
 | GetActivityAssignees(Int32) | |
  | GetActivityAssignees(Int32, SqlConnection, SqlTransaction) | |
 | GetActivityByTemplateId | |
 | GetActivityCommonDenominatorAssigneeRules(IntegerList) | |
  | GetActivityCommonDenominatorAssigneeRules(IntegerList, SqlConnection, SqlTransaction) |
Returnerer mindste fællesnævner af assignee rules for et antal aktiviteter.
Der returneres således kun assignee rules, som er defineret for alle aktiviteterne.
Hver assignee rule angiver således hvad/hvem (om nogen) der lovligt kan vælges fra en gruppe for ALLE aktiviteterne.
Endvidere angiver den om medlemmerne af gruppen har lov til at reassigne ALLE aktiviteterne.
|
 | GetActivityCount | |
 | GetActivityInfo(Int32) | |
 | GetActivityInfo(Int32, Boolean) | |
  | GetActivityInfo(Int32, SqlConnection, SqlTransaction) |
Returnerer et ActivityInfo objekt for en activity.
Metoden anvendes til at indhente en række billige informationer vedr. en activity.
Den anvendes som et alternativ til at have flere mindre metoder,
der hver returnerer en enkelt information for en activity.
|
 | GetActivityManager(ActivityLoadOptions) | |
  | GetActivityManager(ActivityLoadOptions, SqlConnection, SqlTransaction) | |
 | GetActivityProcessId(Int32) | |
  | GetActivityProcessId(Int32, SqlConnection, SqlTransaction) | |
 | GetActivityProcessTargetId(Int32) |
Returns the target id from a process activity id
|
  | GetActivityProcessTargetId(Int32, SqlConnection, SqlTransaction) | |
  | GetActivityState | |
 | GetActivityWorkItemId(Int32, Int32) | |
 | GetActivityWorkItemId(Int32, Int32, ActivityState) | |
  | GetActivityWorkItemId(Int32, Int32, SqlConnection, SqlTransaction) | |
  | GetActivityWorkItemId(Int32, Int32, ActivityState, SqlConnection, SqlTransaction) | |
 | GetAllActiveWorkItemsForTargetDataObject | |
 | GetAssigneesFromIds(IEnumerableInt32) | |
  | GetAssigneesFromIds(IEnumerableInt32, SqlConnection, SqlTransaction) | |
  | GetConditionElementsAwaitingCodeMethod | |
  | GetControlElementCount | |
  | GetControlElementId | |
 | GetControlElementManager(ControlElementLoadOptions) | |
  | GetControlElementManager(ControlElementLoadOptions, SqlConnection, SqlTransaction) | |
  | GetControlElementName | |
 | GetControlElementProcessId(Int32) | |
  | GetControlElementProcessId(Int32, SqlConnection, SqlTransaction) | |
  | GetControlElementSubProcessId | |
  | GetControlElementUId | |
 | GetCurrentWorkItemCount(Int32, Boolean, Boolean) |
Returnerer det totale antal ikke slettede workitems for en activity.
|
  | GetCurrentWorkItemCount(Int32, Boolean, SqlConnection, SqlTransaction) |
Returnerer det totale antal ikke slettede workitems for en activity.
|
 | GetDbUTCNow | (Inherited from ControllerBase.) |
 | GetFirstActivityId(Int32) | |
  | GetFirstActivityId(Int32, SqlConnection, SqlTransaction) | |
 | GetFirstTransitionId(Int32) | |
  | GetFirstTransitionId(Int32, SqlConnection, SqlTransaction) | |
 | GetFromCacheIfPresent(String, ControllerBaseActionWithResultIntegerList, ControllerBaseCacheOptions) | (Inherited from ControllerBase.) |
 | GetFromCacheIfPresent(String, ControllerBaseActionWithResultAppIdentity, ControllerBaseCacheOptions) | (Inherited from ControllerBase.) |
 | GetFromCacheIfPresent(String, ControllerBaseActionWithResultBoolean, ControllerBaseCacheOptions) | (Inherited from ControllerBase.) |
 | GetFromCacheIfPresent(String, ControllerBaseActionWithResultIListGuid, ControllerBaseCacheOptions) | (Inherited from ControllerBase.) |
 | GetFromCacheIfPresent(String, ControllerBaseActionWithResultListGuid, ControllerBaseCacheOptions) | (Inherited from ControllerBase.) |
 | GetFromCacheIfPresent(String, ControllerBaseActionWithResultListInt32, ControllerBaseCacheOptions) | (Inherited from ControllerBase.) |
 | GetFromCacheIfPresent(String, ControllerBaseActionWithResultGuid, ControllerBaseCacheOptions) | (Inherited from ControllerBase.) |
 | GetFromCacheIfPresent(String, ControllerBaseActionWithResultInt32, ControllerBaseCacheOptions) | (Inherited from ControllerBase.) |
 | GetFromCacheIfPresent(String, ControllerBaseActionWithResultTimeZoneInfo, ControllerBaseCacheOptions) | (Inherited from ControllerBase.) |
 | GetFromCacheIfPresentT(String, ControllerBaseActionWithResultListT, ControllerBaseCacheOptions) | (Inherited from ControllerBase.) |
 | GetFromCacheIfPresentT(String, ControllerBaseActionWithResultT, ControllerBaseCacheOptions) |
Retrieves some data from the cache or (if it is not there) executes an action and stores the result in the cache.
Caching is not applied if the IgnoreCacheContext is used (depending on the parameter for it).
Note: caching should only be used with great care as there are a number of potential issues involved in using it!
(Inherited from ControllerBase.) |
  | GetInitialAssigneeIds | |
  | GetNewestActivityLogEntry(IntegerList, SqlConnection, SqlTransaction) | |
  | GetNewestActivityLogEntry(Int32, SqlConnection, SqlTransaction) | |
 | GetNewRowIdentity | (Inherited from ControllerBase.) |
 | GetObjectDataVersion |
Gets the data version of an object.
(Inherited from ControllerBase.) |
 | GetParentProcessId(Int32) | |
  | GetParentProcessId(Int32, SqlConnection, SqlTransaction) | |
  | GetPhaseEstimatePropertyIds | Obsolete. |
 | GetProcessActivityIds(Int32, ActivityStateFlags) |
Returns the ids of the activities that are part of a process or process template.
|
  | GetProcessActivityIds(Int32, SqlConnection, SqlTransaction) | |
 | GetProcessControlElements(Int32) | |
  | GetProcessControlElements(Int32, SqlConnection, SqlTransaction) |
Load all control element of a process with the given id.
|
  | GetProcessCreatorUserId | |
  | GetProcessCreatorWorkWeekId | |
 | GetProcessInstanceCount(Int32) | |
  | GetProcessInstanceCount(Int32, SqlConnection, SqlTransaction) |
Returns the number of process instances that exists for a given process template.
The result includes delete-marked process instances.
|
 | GetProcessManager(ProcessLoadOptions) |
Tip: use LoadProcesses instead.
|
  | GetProcessManager(ProcessLoadOptions, SqlConnection, SqlTransaction) | |
  | GetProcessOwnerUserGroupId | |
  | GetProcessProcessTemplateType | |
 | GetProcessTargetId(Int32) | |
  | GetProcessTargetId(Int32, SqlConnection, SqlTransaction) | |
 | GetProcessTargetTypeId(Int32) | |
  | GetProcessTargetTypeId(Int32, SqlConnection, SqlTransaction) | |
  | GetProcessTemplateCount |
Returns the number of process templates in the system.
|
 | GetProcessTemplateId(Int32) |
Returns the template id for a given process (instance or template).
If the process is a template its own id is returned.
|
  | GetProcessTemplateId(Int32, SqlConnection, SqlTransaction) | Obsolete. |
  | GetProcessTemplateIdFromNumber | |
 | GetProcessTemplateName(Int32) | |
  | GetProcessTemplateName(Int32, SqlConnection, SqlTransaction) | |
  | GetProcessWorkItemIds |
Returnerer alle ikke slette-markerede workitemids for en user i en given proces, som der ikke er udført nogen action på.
|
  | GetServiceDimensionIds(IntegerList, SqlConnection, SqlTransaction) | Obsolete. |
  | GetServiceDimensionIds(IntegerList, Boolean, SqlConnection, SqlTransaction) | Obsolete. |
 | GetSubProcessIds(Int32) | |
  | GetSubProcessIds(Int32, SqlConnection, SqlTransaction) | |
 | GetTransitionDestinationId | |
 | GetTransitionId(Int32, Int32) | |
  | GetTransitionId(Guid, SqlConnection, SqlTransaction) | |
  | GetTransitionId(Int32, Int32, SqlConnection, SqlTransaction) | |
 | GetTransitionIdCheck(String) | |
  | GetTransitionIdCheck(String, SqlConnection, SqlTransaction) |
Returns the integer Id of a tranistion with the UID provided in uidStr.
|
  | GetTransitionName | |
 | GetTransitionNames(IntegerList) |
Returns the names of a number of transitions.
The names are sorted by the transition vorder.
|
  | GetTransitionNames(IntegerList, SqlConnection, SqlTransaction) |
Returns the names of a number of transitions.
The names are sorted by the transition vorder.
|
  | GetTransitionNumber | |
 | GetTransitionProcessId(Int32) | |
  | GetTransitionProcessId(Int32, SqlConnection, SqlTransaction) | |
 | GetTransitionsLeavingActivity(Int32) | |
  | GetTransitionsLeavingActivity(Int32, SqlConnection, SqlTransaction) | |
  | GetTransitionsLeavingControlElement | |
  | GetTransitionsLeavingFirstActivity |
Returnerer id'er for de transitions, som udgår fra den første aktivitet i processen.
|
  | GetTransitionUId | |
  | GetTransitionVOrder | |
 | GetWorkItem(Int32) | |
  | GetWorkItem(Int32, SqlConnection, SqlTransaction) | |
 | GetWorkItemActivityId(Int32, Int32) | |
  | GetWorkItemActivityId(Int32, Int32, SqlConnection, SqlTransaction) | |
 | GetWorkItemProcessTargetId(Int32) | |
  | GetWorkItemProcessTargetId(Int32, SqlConnection, SqlTransaction) | |
 | IncrementDataVersion | (Inherited from ControllerBase.) |
 | IncrementObjectDataVersion(IEntityObject) |
Increments the data version of an entity object.
The data version is incremented in the db as well as on the object itself.
Method is used to update the data version of an object when an aggregated object is created/modified/deleted.
The purpose is to ensure that the id-based cache (in AppIdentity) is updated properly.
(Inherited from ControllerBase.) |
 | IncrementObjectDataVersion(Int32, EntityObjectType) |
Increments the data version of an entity object in the db.
Method is used to update the data version of an object when an aggregated object is created/modified/deleted.
The purpose is to ensure that the id-based cache (in AppIdentity) is updated properly.
(Inherited from ControllerBase.) |
 | IncrementTransitionVOrder(Int32) | |
  | IncrementTransitionVOrder(Int32, SqlConnection, SqlTransaction) | |
 | LoadProcesses | |
 | MakeProcessInstance |
Creates a new process instance based on a process template WITHOUT saving the new process instance to the database.
|
 | MarkActivityAsDeleted(Int32) | |
  | MarkActivityAsDeleted(Int32, SqlConnection, SqlTransaction) | |
 | MarkProcessAsDeleted(Int32) | |
  | MarkProcessAsDeleted(Int32, SqlConnection, SqlTransaction) | |
 | PopulateTempTableT |
Creates a temporary db table with a single column and populates it with values.
(Inherited from ControllerBase.) |
 | PostponeTransientErrorT |
If the action throws a transient sql error, the exception is eaten.
An entry is written to the log with level Information.
The entire exception is written to the log with level Debug.
(Inherited from ControllerBase.) |
 | ProcessIsTemplate(Int32) | |
  | ProcessIsTemplate(Int32, SqlConnection, SqlTransaction) | |
  | ProcessTemplateLimitReached | |
 | ReactivateActivity |
Reactivates a completed activity in a process instance.
The method is intended specifically for the survey feature.
It should be used with great caution for other purposes.
|
 | ReassignActivity(Int32, AssigneeContainer, Boolean) |
Reassigns an activity instance to a set of assignees - or adds a set of assignees to the users and groups that are already assigned to the activity.
|
 | ReassignActivity(Int32, IEnumerableInt32, Boolean) |
Reassigns an activity to one or more users or groups.
|
  | ReassignActivity(Int32, IEnumerableInt32, SqlConnection, SqlTransaction) |
Reassigns an activity to one or more users or groups.
|
  | ReassignActivity(Int32, Int32, SqlConnection, SqlTransaction) | |
  | ReassignActivity(Int32, IEnumerableInt32, Boolean, SqlConnection, SqlTransaction) |
Reassigns an activity to one or more users or groups.
|
  | ResetAllTransitionStatuses | |
  | ResetTransitionStatuses | |
  | ResetTransitionStatusValues | |
  | ResetTransitionStatusValues2 | |
 | ResolveActivityAssigneeExpressionAndReassign |
Resolves the assignee expression stated on the provided activity and reassigns the activity to the resulting users and groups.
This method is used as an api in customer implementations.
|
 | RouteProcess(ProcessRoutingOptions) | |
 | RouteProcess(Int32, Int32, String) | |
  | RouteProcess(ProcessRoutingOptions, SqlConnection, SqlTransaction) |
Aktiverer en transition i en procesinstans og router dermed flowet.
voteComment anvendes kun hvis transition udgår fra en voting activity.
|
  | RouteProcess(Int32, Int32, String, SqlConnection, SqlTransaction) | |
 | SaveActivity(Activity, ActivitySaveOptions) | |
  | SaveActivity(Activity, ActivitySaveOptions, SqlConnection, SqlTransaction) | |
 | SaveActivityAssigneeRules(Int32, AssigneeRules) | |
  | SaveActivityAssigneeRules(Int32, AssigneeRules, SqlConnection, SqlTransaction) | |
 | SaveActivityFormFieldStates(Int32, FormSectionFieldStates) | |
  | SaveActivityFormFieldStates(Int32, FormSectionFieldStates, SqlConnection, SqlTransaction) | |
 | SaveActivityLinks(Activity) | |
  | SaveActivityLinks(Activity, SqlConnection, SqlTransaction) | |
 | SaveAssigneeConstraints(Activity) | |
  | SaveAssigneeConstraints(Activity, SqlConnection, SqlTransaction) | |
 | SaveControlElement(ControlElement) | |
  | SaveControlElement(ControlElement, SqlConnection, SqlTransaction) | |
 | SaveProcess(Process, ProcessSaveOptions) | |
  | SaveProcess(Process, ProcessSaveOptions, SqlConnection, SqlTransaction) | |
 | SaveServiceDimensions(ServiceDimensions, Int32) | |
  | SaveServiceDimensions(ServiceDimensions, Int32, SqlConnection, SqlTransaction) | |
 | SaveTransition(Transition) | |
 | SaveTransition(Transition, Int32) | |
  | SaveTransition(Transition, SqlConnection, SqlTransaction) | |
  | SaveTransition(Transition, Int32, SqlConnection, SqlTransaction) | |
 | SetTransitionVOrder(Int32, Int32) | |
  | SetTransitionVOrder(Int32, Int32, SqlConnection, SqlTransaction) | |
 | SetWorkItemAcceptance |
This method is used as an api in customer implementations.
|
 | TerminateProcess(Int32) | |
  | TerminateProcess(Int32, SqlConnection, SqlTransaction) | |
 | TerminateProcesses(IntegerList) | |
  | TerminateProcesses(IntegerList, SqlConnection, SqlTransaction) |
Method terminates processes of the given ids
and returns ids of those processes, that can not be terminated.
A process cannot be terminated if it is a
- process template, and/or
- completed/terminated process, and/or
- no permissions to terminate the process
|
 | TransferUIdsToIdsLoadOption |
Converts/transfers one or more specified uids in a loadoptions object to ids.
The purpose is to enable caching as IEntityObjectsLoadOptions.IdList only works with ids (and not uids).
(Inherited from ControllerBase.) |
  | TransitionIsTemplate | |
  | UpdateAllActivityAssigneesText |
Updates the activity assignees field for each and all activity in the system.
Used for database migration from 5.8 to 6.0
|
 | UpdateAndRouteProcess(Process, ProcessSaveAndRouteOptions) | |
  | UpdateAndRouteProcess(Process, ProcessSaveAndRouteOptions, SqlConnection, SqlTransaction) |
UpdateAndRouteProcess is specifically designed to be used in workitemdlg.aspx.
It updates an existing process instance and routes it by activating a transition.
|
 | ValidateDataVersionT |
Validates that the data version of an object corresponds to the data version in the DB.
Method is used for validation before saving an object.
(Inherited from ControllerBase.) |