ActionEngineUtilGetValueTAction, TCollection(TAction, String) Method

Return the string value of the specified property within the caller's File Action.

Definition

Namespace: ActionEngine
Assembly: ActionEngine (in ActionEngine.dll) Version: 26.2117.4453
C#
public static string GetValue<TAction, TCollection>(
	TAction actionItem,
	string propertyName
)
where TAction : ActionItemBase<TAction, TCollection>
where TCollection : new(), ActionCollectionBase<TAction, TCollection>

Parameters

actionItem  TAction
Reference to the file action item to be inspected.
propertyName  String
Name of the property to read on the file action action item.

Type Parameters

TAction
The concrete type of action to consider.
TCollection
The concrete type of collection matched to the action.

Return Value

String
String representation of the specified property value, if found. Otherwise, an empty string.

See Also