expressappframework-devexpress-dot-expressapp-dot-xafapplication-de6f05b6.md
Gets the ITypesInfo object that supplies metadata on types used in an XAF application.
Namespace : DevExpress.ExpressApp
Assembly : DevExpress.ExpressApp.v25.2.dll
NuGet Package : DevExpress.ExpressApp
[Browsable(false)]
public ITypesInfo TypesInfo { get; }
<Browsable(False)>
Public ReadOnly Property TypesInfo As ITypesInfo
| Type | Description |
|---|---|
| ITypesInfo |
An ITypesInfo object which supplies metadata on types used in an XAF application.
|
Use this property when you need to get information on a business class used in your application.
The following code snippet (auto-collected from DevExpress Examples) contains a reference to the TypesInfo property.
Note
The algorithm used to collect these code examples remains a work in progress. Accordingly, the links and snippets below may produce inaccurate results. If you encounter an issue with code examples below, please use the feedback form on this page to report the issue.
builder.Add(delegate (XafApplication application, CreateCustomObjectSpaceProviderEventArgs _) {
return CreateObjectSpaceProvider((ISelectDataSecurityProvider)application.Security, application.TypesInfo, dataStoreProvider);
});
See Also