Returns whether a class description describes the class or subclass identified by a given class name or GUID string (
) or not (
). 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
object.ClassDescription
- classIdent
- A
specifying the name or GUID string of the class.String
Return Value
if the class description specified by
describes the class or subclass specified by
; otherwise, returns
.