[This is preliminary documentation and is subject to change.]

Get the allowed children object. This method checks up the applications that are allowed by the current user and returns only those child objects that are consistent with this.

Namespace:  OfficeClip.BusinessLayer
Assembly:  OfficeClip.BusinessLayer (in OfficeClip.BusinessLayer)
Version: 8.1.1.0

Syntax

C#
public List<BusinessConstants..::.ObjectType> GetAllowedChildren(
	BusinessConstants..::.ObjectType parent
)
Visual Basic (Declaration)
Public Function GetAllowedChildren ( _
	parent As BusinessConstants..::.ObjectType _
) As List(Of BusinessConstants..::.ObjectType)
Visual C++
public:
List<BusinessConstants..::.ObjectType>^ GetAllowedChildren(
	BusinessConstants..::.ObjectType parent
)

Parameters

parent
Type: OfficeClip.BusinessLayer..::.BusinessConstants..::.ObjectType
The parent object type

Return Value

The arraylist of allowed children. The session has to be valid if this method has to return the correct values. If the session is not present, then this methods throws an exception

See Also