Back to Devexpress

XafApplication.TypesInfo Property

expressappframework-devexpress-dot-expressapp-dot-xafapplication-de6f05b6.md

latest2.5 KB
Original Source

XafApplication.TypesInfo Property

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

Declaration

csharp
[Browsable(false)]
public ITypesInfo TypesInfo { get; }
vb
<Browsable(False)>
Public ReadOnly Property TypesInfo As ITypesInfo

Property Value

TypeDescription
ITypesInfo

An ITypesInfo object which supplies metadata on types used in an XAF application.

|

Remarks

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.

XAF_how-to-connect-different-data-models-to-several-databases-within-a-single-application/CS/XPO/.NET/ClassLibrary1/XafModule1.cs#L63

csharp
builder.Add(delegate (XafApplication application, CreateCustomObjectSpaceProviderEventArgs _) {
    return CreateObjectSpaceProvider((ISelectDataSecurityProvider)application.Security, application.TypesInfo, dataStoreProvider);
});

See Also

XafApplication Class

XafApplication Members

DevExpress.ExpressApp Namespace