IFsrmClassificationManager2.GetModuleDefinition Method (String, _FsrmPipelineModuleType)
Retrieves the specified module definition.
Namespace: Microsoft.Storage
Assembly: srmlib (in srmlib.dll)
Syntax
IFsrmPipelineModuleDefinition GetModuleDefinition(
string moduleName,
_FsrmPipelineModuleType ModuleType
)
IFsrmPipelineModuleDefinition^ GetModuleDefinition(
String^ moduleName,
_FsrmPipelineModuleType ModuleType
)
abstract GetModuleDefinition :
moduleName:string *
ModuleType:_FsrmPipelineModuleType -> IFsrmPipelineModuleDefinition
Function GetModuleDefinition (
moduleName As String,
ModuleType As _FsrmPipelineModuleType
) As IFsrmPipelineModuleDefinition
Parameters
moduleName
Type: System.StringThe name of the module to retrieve. The name must not exceed 100 characters in length.
ModuleType
Type: Microsoft.Storage._FsrmPipelineModuleTypeThe type of the module to retrieve. For possible types, see the _FsrmPipelineModuleType enumeration.
Return Value
Type: Microsoft.Storage.IFsrmPipelineModuleDefinition
Returns a IFsrmPipelineModuleDefinition interface to the retrieved module definition. Query the IFsrmPipelineModuleDefinition interface to get the interface for the specified module. For example, if the value of the ModuleType parameter is FsrmPipelineModuleType_Classifier, query the IFsrmPipelineModuleDefinition interface for the IFsrmClassifierModuleDefinition interface.
Implements
IFsrmClassificationManager.GetModuleDefinition(String, _FsrmPipelineModuleType)
See Also
IFsrmClassificationManager2 Interface
Microsoft.Storage Namespace
Return to top