Session.GetProperties(XPClassInfo) Method
In This Article
Gets the properties of the class whose metadata is provided by the specified XPClassInfo object.
Namespace: DevExpress.Xpo
Assembly: DevExpress.Xpo.v24.2.dll
NuGet Package: DevExpress.Xpo
#Declaration
public PropertyDescriptorCollection GetProperties(
XPClassInfo classInfo
)
#Parameters
Name | Type | Description |
---|---|---|
class |
XPClass |
An XPClass |
#Returns
Type | Description |
---|---|
Property |
A collection of Property |
#Remarks
Using the properties available in the PropertyDescriptorCollection class, you can query the collection about its contents. For example, use the Count property to determine the number of elements in the collection. Use the Item property to get a specific property by index number or name.
See Also