Returns the class description for a given class and scope. If the class description is not already resident, this method fetches it from the server and adds it to the metadata cache.

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

ToggleSyntax

Visual Basic (Declaration)
Function GetClassDescription ( _
	scope As IInstantiatingScope, _
	classIdent As String _
) As IClassDescription
C#
IClassDescription GetClassDescription(
	IInstantiatingScope scope,
	string classIdent
)
Visual C++
IClassDescription^ GetClassDescription(
	IInstantiatingScope^ scope, 
	String^ classIdent
)
JavaScript
function getClassDescription(scope, classIdent);

Parameters

scope
Type: FileNet.Api.Core..::.IInstantiatingScope
An InstantiatingScope object specifying the scope of the class description.
classIdent
Type: System..::.String
A String specifying the name or GUID string of the class.

Return Value

A ClassDescription object.

ToggleSee Also