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)

Syntax

Visual Basic (Declaration)
Function DescribedIsOfClass( _ 
   ByVal cd As IClassDescription,  _ 
   ByVal classIdent As String _ 
) As Boolean
C#
bool DescribedIsOfClass(
   IClassDescription cd,
   string classIdent
)
C++
bool DescribedIsOfClass(
   IClassDescription cd,
   String classIdent
) abstract 
J#
bool DescribedIsOfClass(
   IClassDescription cd,
   string classIdent
)
JScript
function DescribedIsOfClass(
   cd : IClassDescription,
   classIdent : String
) : bool

Parameters

cd
A ClassDescription object.
classIdent
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.

See Also