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

ModelBOModelClassNodesGenerator.TryGetTypeId(Type, out String) Method

Tries to get an identifier of a given type.

Namespace: DevExpress.ExpressApp.Model.NodeGenerators

Assembly: DevExpress.ExpressApp.v18.2.dll

Declaration

public static bool TryGetTypeId(
    Type type,
    out string typeId
)

Parameters

Name Type Description
type Type

A System.Type object.

typeId String

A string identifier of a given type.

Returns

Type Description
Boolean

On success, returns true; otherwise, false.

Remarks

The TryGetTypeId method returns false and sets the typeId parameter to null if the passed type contains generic parameters (see Type.ContainsGenericParameters).

See Also