Interface IToken
public interface IToken
- Extension Methods
Properties
Code
Gets an alphanumeric code for the object. Uniqueness is not guaranteed.
string Code { get; }
Property Value
Identifier
Gets a globally unique identifier for the object.
Guid Identifier { get; }
Property Value
Key
Gets a unique integer value for the object. Values are not intended for use outside the system.
int Key { get; }
Property Value
Name
Gets a name for the object. This is most often used for office/filing purposes.
string Name { get; }
Property Value
Number
Gets a unique integer value for the object. Values can be used outside the system.
int Number { get; }
Property Value
Subtype
Gets the subtype of the object (if applicable).
string Subtype { get; }
Property Value
Title
Gets a display title for the object. This is most often used for publication purposes.
string Title { get; }
Property Value
Type
Gets the type of the object.
string Type { get; }