Click or drag to resize
SoNetBaseGetRegisteredType Method
Gets the managed type associated with the specified native type name.

Namespace: OIV.Inventor
Assembly: OIV.Inventor.Base (in OIV.Inventor.Base.dll) Version: 2024.1.0.0 (2024.1.0)
Syntax
public static Type GetRegisteredType(
	string nativeTypeName
)

Parameters

nativeTypeName
Type: SystemString
a managed string of the the native type name. The native type name can be retrieved using the
::AnSoTypedObject::getClassTypeId().getName().getString()
method call.

Return Value

Type: Type
the managed type associated with the nativeTypeName

- or -

null if the nativeTypeName is unknown.
Exceptions
ExceptionCondition
ArgumentException Thrown when the name denotes a bad type.
Remarks
Gets the managed type associated with the specified native type name.
See Also