Interface IPropertyValueProvider
Provides a way to extract property values by property names.
Namespace: Telerik.WinControls.FileSearch
Assembly: Telerik.WinControls.UI.dll
Syntax
public interface IPropertyValueProvider
Methods
GetPropertyNames()
Gets the list of all property names of this IPropertyValueProvider instance.
Declaration
IEnumerable<string> GetPropertyNames()
Returns
System.Collections.Generic.IEnumerable<System.String>
|
GetPropertyValue(String)
Gets the value of the property with the specified property name.
Declaration
object GetPropertyValue(string propertyName)
Parameters
System.String
propertyName
|
Returns
System.Object
|