Returns whether a class description describes the class or subclass identified by a given class name or GUID string (true) or not (false). Class descriptions are fetched from the server and added to the metadata cache as needed.

Namespace:  FileNet.Api.Meta
Assembly:  FileNet.Api (in FileNet.Api.dll)

ToggleSyntax

Visual Basic (Declaration)
Function DescribedIsOfClass ( _
	cd As IClassDescription, _
	classIdent As String _
) As Boolean
C#
bool DescribedIsOfClass(
	IClassDescription cd,
	string classIdent
)
Visual C++
bool DescribedIsOfClass(
	IClassDescription^ cd, 
	String^ classIdent
)
JavaScript
function describedIsOfClass(cd, classIdent);

Parameters

cd
Type: FileNet.Api.Meta..::.IClassDescription
A ClassDescription object.
classIdent
Type: System..::.String
A String specifying the name or GUID string of the class.

Return Value

True if the class description specified by cd describes the class or subclass specified by classIdent; otherwise, returns false.

ToggleSee Also