Class PropertyInfoCollection
Inheritance
System.Object
PropertyInfoCollection
Namespace: Syncfusion.Data
Assembly: Syncfusion.Data.Portable.dll
Syntax
public class PropertyInfoCollection : Dictionary<string, PropertyInfo>
Constructors
PropertyInfoCollection()
Initializes a new instance of the PropertyInfoCollection class.
Declaration
public PropertyInfoCollection()
PropertyInfoCollection(Type)
Initializes a new instance of the PropertyInfoCollection class.
Declaration
public PropertyInfoCollection(Type type)
Parameters
Type | Name | Description |
---|---|---|
System.Type | type | The type of the properties in the collection. |
Properties
Empty
Gets the empty property info collection.
Declaration
public static PropertyInfoCollection Empty { get; }
Property Value
Type | Description |
---|---|
PropertyInfoCollection | The empty property info collection. |
Type
Gets the type of the properties in the collection.
Declaration
public Type Type { get; }
Property Value
Type | Description |
---|---|
System.Type | The type of the properties in the collection. |
Methods
Find(String, Boolean)
Finds the property info of the given column name in the property info collection.
Declaration
public PropertyInfo Find(string columnName, bool matchCase)
Parameters
Type | Name | Description |
---|---|---|
System.String | columnName | The column name for which the property info is to be obtained. |
System.Boolean | matchCase | A boolean value indicating whether to consider the casing or not. |
Returns
Type | Description |
---|---|
System.Reflection.PropertyInfo | The property info of the given column name. |