Click or drag to resize
WarningMessage Constructor
Initializes a new instance of the WarningMessage class.

Namespace:  SD.LLBLGen.Pro.ApplicationCore.MessageReporting
Assembly:  SD.LLBLGen.Pro.ApplicationCore (in SD.LLBLGen.Pro.ApplicationCore.dll) Version: 5.1.0.0 (5.1.0)
Syntax
public WarningMessage(
	string source,
	string id,
	bool correctionsAreChoices,
	string messageText,
	params Object[] messageTextArgs
)

Parameters

source
Type: SystemString
The source.
id
Type: SystemString
The identifier for this message. This is the ID of the type of the warning.
correctionsAreChoices
Type: SystemBoolean
if set to true, the corrections in this message are choices and can have a correction func. If set to false, the corrections in this message are steps and can't have a function to execute.
messageText
Type: SystemString
The message text.
messageTextArgs
Type: SystemObject
The message text args.
See Also