Five New Optimizely Certifications are Here! Validate your expertise and advance your career with our latest certification exams. Click here to find out more

Class BackgroundTaskMessageType

Describes types of messages returned by background tasks.

Inheritance
System.Object
BackgroundTaskMessageType
Namespace: Mediachase.Commerce.BackgroundTasks
Assembly: Mediachase.Commerce.dll
Version: 14.26.0
Syntax
public sealed class BackgroundTaskMessageType : Enum

Fields

Debug

The message contains debugging output.

Declaration
public const BackgroundTaskMessageType Debug
Field Value
Type Description
BackgroundTaskMessageType

Error

The message indicates overall failure. Failure should only be used for the final message in the log.

Declaration
public const BackgroundTaskMessageType Error
Field Value
Type Description
BackgroundTaskMessageType

Info

The message is informational.

Declaration
public const BackgroundTaskMessageType Info
Field Value
Type Description
BackgroundTaskMessageType

Progress

The message is a transient progress message. Progress messages will be immediately overwritten by the next message, and will not be persisted in the log.

Declaration
public const BackgroundTaskMessageType Progress
Field Value
Type Description
BackgroundTaskMessageType

Success

The message indicates overall success. Success should only be used for the final message in the log.

Declaration
public const BackgroundTaskMessageType Success
Field Value
Type Description
BackgroundTaskMessageType

value__

Declaration
public int value__
Field Value
Type Description
System.Int32

Warning

The message contains a warning.

Declaration
public const BackgroundTaskMessageType Warning
Field Value
Type Description
BackgroundTaskMessageType