Class BBCodeCommandBase
The base class for a BBCode command.
Inheritance
BBCodeCommandBase
Inherited Members
Namespace: SadConsole.StringParser.BBCode
Assembly: SadConsole.dll
Syntax
public abstract class BBCodeCommandBase : ParseCommandBase
Constructors
BBCodeCommandBase()
Declaration
protected BBCodeCommandBase()
Properties
Tag
The tag used to create this command.
Declaration
public string Tag { get; protected set; }
Property Value
Type | Description |
---|---|
string |
Methods
SetBBCode(string, string?, Dictionary<string, string>?)
Provides the information about the tag that triggered this command.
Declaration
public abstract void SetBBCode(string tag, string? value, Dictionary<string, string>? parameters)
Parameters
Type | Name | Description |
---|---|---|
string | tag | The BBCode tag condition that triggered the command. |
string | value | Optional value provided by the BBCode. |
Dictionary<string, string> | parameters | Optional parameters provided by the BBCode. |