Interface IProperty<T>
A general purpose (attached) property object that stores information and can in turn be used and stored by components that use it. This is considered internal code and not to be used by external applications.
Inherited Members
Namespace: ExtendedXmlSerializer.Configuration
Assembly: ExtendedXmlSerializer.dll
Syntax
public interface IProperty<T> : ISource<T>
Type Parameters
T
The property's value type. |
Methods
Assign(T)
Used to assign a value for the property.
Declaration
void Assign(T value)
Parameters
T
value
|