Interface IToken<T>
Definition
- Assembly:
- Tizen.NUI.dll
Interface for token. Token is a key-value pair that can be applied to the target. It has an id and value. The value type is generic.
public interface IToken<T>
Properties
View SourceId
The unique identifier of the token.
Declaration
string Id { get; }
Property Value
| Type | Description |
|---|---|
| string |
Value
The value of the token.
Declaration
T Value { get; }
Property Value
| Type | Description |
|---|---|
| T |