Gets a trigger.

Namespace:  RightEdge.Common
Assembly:  Common (in Common.dll) Version: 2010.1.0.0 (2010.1.0.0)

Syntax

C#
public List<IAction> this[
	string TriggerName
] { get; }
Visual Basic (Declaration)
Public ReadOnly Default Property Item ( _
	TriggerName As String _
) As List(Of IAction)
Visual C++
public:
property List<IAction^>^ default[String^ TriggerName] {
	List<IAction^>^ get (String^ TriggerName);
}

Parameters

TriggerName
Type: System..::.String
string containing the trigger name.

Return Value

IAction instance if the action is found. If the action is not found, a new action instance is created.

See Also