Interface IGetsVariableDefinitionsFromAttributeValue
An object which parses an attribute value and returns a collection of variable definitions.
Namespace: ZptSharp.Tal
Assembly: ZptSharp.dll
Syntax
public interface IGetsVariableDefinitionsFromAttributeValue
Methods
| Improve this Doc View SourceGetDefinitions(String)
Gets a collection of the variable definitions specified in the attribute value. This might be one or more separate definitions, semicolon-separated.
Declaration
IEnumerable<VariableDefinition> GetDefinitions(string attributeValue)
Parameters
Type | Name | Description |
---|---|---|
System.String | attributeValue | Attribute value. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<VariableDefinition> | The definitions. |
Exceptions
Type | Condition |
---|---|
System.FormatException | If the syntax/format of the attribute value is invalid. |