Skip to content

Node<TNode>.AddMessage Method

Overloads

Name Description
AddMessage(Message) Adds a Message to this node.
AddMessage(MessageLevel, String) Adds a Message with the specified Level and Text to this node.
AddMessage(MessageLevel, String, String) Adds a Message with the specified Level, Code and Text to this node.

AddMessage(Message)

Adds a Message to this node.

public void AddMessage(Message message);

View source

Parameters

Name Type Description
message Message The Message to add.

AddMessage(MessageLevel, String)

Adds a Message with the specified Level and Text to this node.

public void AddMessage(MessageLevel level, string text);

View source

Parameters

Name Type Description
level MessageLevel The Level of the Message.
text String The Text of the message.

AddMessage(MessageLevel, String, String)

Adds a Message with the specified Level, Code and Text to this node.

public void AddMessage(MessageLevel level, string code, string text);

View source

Parameters

Name Type Description
level MessageLevel The Level of the Message.
code String The Code for the message.
text String The Text of the message.