DSPMetadata GetDerivedTypes Method
Returns list of all types derived (directly or indirectly) from the specified resourceType.

Namespace: HotDocs.Sdk.DataServices
Assembly: HotDocs.Sdk.DataServices (in HotDocs.Sdk.DataServices.dll) Version: 1.0.0.0 (1.0.0.0)
Syntax

public IEnumerable<ResourceType> GetDerivedTypes(
	ResourceType resourceType
)

Parameters

resourceType
Type: OnlineSystem.Data.Services.Providers ResourceType
The resource type to determine derived types for.

Return Value

Type: OnlineIEnumerable OnlineResourceType 
List of derived types.

Implements

OnlineIDataServiceMetadataProvider GetDerivedTypes(ResourceType)
Remarks

Note that this method will get called even if the HasDerivedTypes returns false. The implementation should be reasonably fast as it can be called to process a query request. (Aside from being called for the $metadata processing).
See Also