Skip to main content
A newer version of this page is available. .

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.v18.2.dll

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.

See Also