Click or drag to resize

ObjectWithExternalInterfaceInterfaceClassReferences Method

All external Interfaces of this Object with ExternalInterfaces with an associated InterfaceClass reference with the specified CAEX path interface reference. If inheritance relations between interface classes should be regarded, the optional parameter 'regardInheritance' should be set. In this case the specified InterfaceClass is either identical to a referenced InterfaceClass or a referenced InterfaceClass is derived from the specified InterfaceClass.

Namespace: Aml.Engine.CAEX.Extensions
Assembly: Aml.Engine (in Aml.Engine.dll) Version: 3.2
Syntax
public static IEnumerable<ExternalInterfaceType> InterfaceClassReferences(
	this IObjectWithExternalInterface objectWithExternalInterface,
	string interfaceReference,
	bool regardInheritance = false
)

Parameters

objectWithExternalInterface  IObjectWithExternalInterface
the CAEX object with external interfaces
interfaceReference  String
The interface reference.
regardInheritance  Boolean  (Optional)
if set to true inheritance relations are regarded (default is false).

Return Value

IEnumerableExternalInterfaceType
All external interfaces with an associated InterfaceClass reference with the specified CAEX path interface reference.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IObjectWithExternalInterface. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Exceptions
ExceptionCondition
ArgumentNullExceptioninterfaceReference
See Also