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

XPClassInfo.IsAssignableTo(XPClassInfo) Method

Determines whether an instance of the current type can be assigned to an instance of the specified type.

Namespace: DevExpress.Xpo.Metadata

Assembly: DevExpress.Xpo.v19.2.dll

Declaration

public bool IsAssignableTo(
    XPClassInfo classInfo
)

Parameters

Name Type Description
classInfo XPClassInfo

An XPClassInfo object which describes the type to compare with the current type.

Returns

Type Description
Boolean

true if an instance of the current type can be assigned to an instance of the specified type; otherwise, false.

Remarks

The IsAssignableTo property returns true in the cases listed below:

  • the classInfo parameter and the current XPClassInfo object describe the same class;
  • if the class described by the current XPClassInfo object is in the inheritance hierarchy of the class described by the classInfo.
See Also