Skip to main content
A newer version of this page is available. .
.NET Framework 4.5.2+

ValueManager.GetValueManager<ValueType>(String) Method

Provides access to the platform-specific value manager with a specified identifier. If there is no such a value manager, creates it.

Namespace: DevExpress.Persistent.Base

Assembly: DevExpress.ExpressApp.v20.2.dll

NuGet Package: DevExpress.ExpressApp

Declaration

public static IValueManager<ValueType> GetValueManager<ValueType>(
    string key
)

Parameters

Name Type Description
key String

A string specifying a value manager identifier.

Type Parameters

Name
ValueType

Returns

Type Description
IValueManager<ValueType>

An IValueManager<ValueType> object which is a platform-specific value manager with the key identifier.

Remarks

For an example of using this method, refer to the ValueManager class description.

The following code snippet (auto-collected from DevExpress Examples) contains a reference to the GetValueManager<ValueType>(String) method.

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.

See Also