Click or drag to resize
JobAction Class
Represents an action recently reported by a job.
Inheritance Hierarchy
SystemObject
  DoubleTake.Jobs.ContractJobAction

Namespace: DoubleTake.Jobs.Contract
Assembly: DoubleTake.PowerShell.Contract.Data (in DoubleTake.PowerShell.Contract.Data.dll) Version: 8.0.0.1664
Syntax
public class JobAction : IExtensibleDataObject

The JobAction type exposes the following members.

Constructors
  NameDescription
Public methodJobAction
Top
Properties
  NameDescription
Public propertyDuration
This value is the duration of the action.
Public propertyErrorCode
This value is the error code associated with the action.
Public propertyExceptionMessage
This value is a message from the underlying exception. The message stored in this property should not be displayed in the user interface, as it may not be available in the language used by the interface. This property should only be used for internal troubleshooting, and as a measure of last resort in the event of a completely unexpected error.
Public propertyExtensionData
Gets or sets the structure that contains extra data.
Public propertyId
This value is the unique ID of the action.
Public propertyMessageFormatParameters
This value is the message format parameters.
Public propertyMessageId
This value is the message ID for the action. This value can be used to look up a message associated with this action.
Public propertyRequestingUserName
This value is the name of the user that requested the action.
Public propertyStatus
This value represents the status of the action.
Public propertyTimestamp
This value is the time when the action occurred.
Public propertyTitleFormatParameters
This value is the title format parameters for the action.
Public propertyTitleId
This value is the title ID for the action. This value can be used to look up a title associated with this action.
Top
Remarks
Naturally, error information is logged for a job in the Windows event log and other locations. This class represents an action or error in a format that is convenient for displaying in the user interface.
See Also