Interface IAccessor<T>
Allows reading object properties.
Namespace: DevExtreme.AspNet.Data.Helpers
Assembly: DevExtreme.AspNet.Data.dll
Syntax
public interface IAccessor<T>
Type Parameters
Name | Description |
---|---|
T | The type of the object. |
Methods
| Improve this DocRead(T, String)
Reads an object property.
Declaration
object Read(T container, string selector)
Parameters
Type | Name | Description |
---|---|---|
T | container | An object whose property should be read. |
String | selector | The name or path to the property. |
Returns
Type | Description |
---|---|
Object | The property's value. |