Class CustomTypeProviderExtensions
ICustomTypeProvider extensions.
Inheritance
Namespace: Telerik.Windows.Data.Expressions
Assembly: Telerik.Windows.Data.dll
Syntax
public static class CustomTypeProviderExtensions : Object
Methods
Property<T>(Object, String)
Gets the value of a property on the given component.
Declaration
public static T Property<T>(object component, string propertyName)
Parameters
System.Object
component
The component, which property will be accessed. |
System.String
propertyName
Name of the property. |
Returns
T
The value of the given property for the given component. |
Type Parameters
T
|
Property<T>(ICustomTypeProvider, String)
Gets the value of a property on the given custom type provider.
Declaration
public static T Property<T>(this ICustomTypeProvider typeProvider, string propertyName)
Parameters
System.Reflection.ICustomTypeProvider
typeProvider
The type provider, which property will be accessed. |
System.String
propertyName
Name of the property. |
Returns
T
The value of the given property for the given custom type provider. |
Type Parameters
T
|