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)
Syntax
Visual Basic (Declaration) |
---|
Public MustOverride Function GetClassDescription( _ ByVal scope As IInstantiatingScope, _ ByVal classIdent As String _ ) As IClassDescription |
C# |
---|
public abstract IClassDescription GetClassDescription( IInstantiatingScope scope, string classIdent ) |
C++ |
---|
public: IClassDescription GetClassDescription( IInstantiatingScope scope, String classIdent ) abstract |
J# |
---|
public abstract IClassDescription GetClassDescription( IInstantiatingScope scope, string classIdent ) |
JScript |
---|
public abstract
function GetClassDescription( scope : IInstantiatingScope, classIdent : String ) : IClassDescription |
Parameters
- scope
- An
object specifying the scope of the class description.InstantiatingScope
- classIdent
- A
specifying the name or GUID string of the class.String
Return Value
A
object.