Interface IGetsAttributeDefinitions
An object which can provide a collection of AttributeDefinition from a string value. That string is expected to be in the format of a TAL 'attributes' attribute value.
Namespace: ZptSharp.Tal
Assembly: ZptSharp.Abstractions.dll
Syntax
public interface IGetsAttributeDefinitions
Methods
| Improve this Doc View SourceGetDefinitions(String, INode)
Gets the attribute definitions from the specified attributesAttributeValue
.
Declaration
IEnumerable<AttributeDefinition> GetDefinitions(string attributesAttributeValue, INode node)
Parameters
Type | Name | Description |
---|---|---|
System.String | attributesAttributeValue | The TAL 'attributes' attribute value. |
INode | node | The node node upon which the attributes are defined. |
Returns
Type | Description |
---|---|
System.Collections.Generic.IEnumerable<AttributeDefinition> | The attribute definitions. |