TryGetClrPropertyInfo Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents a delegate to get property info of a CLR type based on the property name and Type.
public delegate bool TryGetClrPropertyInfo(Type clrType, string edmName, out PropertyInfo propertyInfo);
type TryGetClrPropertyInfo = delegate of Type * string * PropertyInfo -> bool
Public Delegate Function TryGetClrPropertyInfo(clrType As Type, edmName As String, ByRef propertyInfo As PropertyInfo) As Boolean
Parameters
- clrType
- Type
The CLR type which contains the property info.
- edmName
- String
The property name which might be server side name or client side name.
- propertyInfo
- PropertyInfo
The output parameter returning a PropertyInfo.
Return Value
True if the delegate find the property, else false.