다음을 통해 공유


IFsrmClassificationManager Interface

 

Manages file classification. Use this interface to define properties to use in classification, add classification rules for classifying files, define classification and storage modules, and enable classification reporting.

Namespace:   Microsoft.Storage
Assembly:  srmlib (in srmlib.dll)

Syntax

[GuidAttribute("D2DC89DA-EE91-48A0-85D8-CC72A56F7D04")]
public interface IFsrmClassificationManager
[GuidAttribute("D2DC89DA-EE91-48A0-85D8-CC72A56F7D04")]
public interface class IFsrmClassificationManager
[<GuidAttribute("D2DC89DA-EE91-48A0-85D8-CC72A56F7D04")>]
type IFsrmClassificationManager = interface end
<GuidAttribute("D2DC89DA-EE91-48A0-85D8-CC72A56F7D04")>
Public Interface IFsrmClassificationManager

Properties

Name Description
System_CAPS_pubproperty ClassificationLastError

Retrieves the error message from the last time that classification was run.

System_CAPS_pubproperty ClassificationLastReportPathWithoutExtension

Retrieves the local directory path where the reports were stored the last time that classification ran.

System_CAPS_pubproperty ClassificationReportEnabled

Retrieves or sets the value that determines whether classification reporting is enabled or not.

System_CAPS_pubproperty ClassificationReportFormats

Retrieves or sets the list of formats in which to generate the classification reports.

System_CAPS_pubproperty ClassificationReportMailTo

Gets or sets the email address to which to send the classification reports, if any.

System_CAPS_pubproperty ClassificationRunningStatus

Retrieves or sets the running status of the classification.

System_CAPS_pubproperty Logging

Gets or sets the types of logging to perform when running the classification rules.

Methods

Name Description
System_CAPS_pubmethod CancelClassification()

Cancels classification if it is running.

System_CAPS_pubmethod ClearFileProperty(String, String)

Attempts to remove the specified property from the file or folder.

System_CAPS_pubmethod CreateModuleDefinition(_FsrmPipelineModuleType)

Creates a module definition of the specified type.

System_CAPS_pubmethod CreatePropertyDefinition()

Creates a property definition.

System_CAPS_pubmethod CreateRule(_FsrmRuleType)

Creates a rule of the specified type.

System_CAPS_pubmethod EnumFileProperties(String, _FsrmGetFilePropertyOptions)

Enumerates the properties of the specified file.

System_CAPS_pubmethod EnumModuleDefinitions(_FsrmPipelineModuleType, _FsrmEnumOptions)

Enumerates the module definitions of the specified type.

System_CAPS_pubmethod EnumPropertyDefinitions(_FsrmEnumOptions)

Enumerates the property definitions.

System_CAPS_pubmethod EnumRules(_FsrmRuleType, _FsrmEnumOptions)

Enumerates the rules of the specified type.

System_CAPS_pubmethod GetFileProperty(String, String, _FsrmGetFilePropertyOptions)

Retrieves the specified property from the file or folder.

System_CAPS_pubmethod GetModuleDefinition(String, _FsrmPipelineModuleType)

Retrieves the specified module definition.

System_CAPS_pubmethod GetPropertyDefinition(String)

Retrieves the specified property definition.

System_CAPS_pubmethod GetRule(String, _FsrmRuleType)

Retrieves the specified rule.

System_CAPS_pubmethod RunClassification(_FsrmReportGenerationContext, String)

Runs classification rules and generates the classification report.

System_CAPS_pubmethod SetFileProperty(String, String, String)

Sets the value of the specified property in the file or folder.

System_CAPS_pubmethod WaitForClassificationCompletion(Int32)

Waits for the specified period of time or until classification has finished running.

Remarks

To create this object from a script, use the "Fsrm.FsrmClassificationManager" program identifier.The classification feature lets you classify (tag) files. To do this the properties that can be associated with a file must first be defined using CreatePropertyDefinition. Once a property is defined it may be set using APIs such as SetFileProperty, retrieved using GetFileProperty or EnumFileProperties, or cleared using ClearFileProperty. ClassifyFiles performs these actions on multiple files. Alternatively a series of rules to automatically classify files can be created. If a rule applies to the file, the rule associates a property and property value with the file. The property can be stored separately from the file or stored in the file depending on the storage module available on the computer.

The built-in System Cache Storage Module stores the properties outside of the file using alternate data stream storage and the security descriptor (Windows Server 2012 and Windows 8 only). Storing the properties separately may result in them not moving when the file is moved.

The Office Storage Modules store the classification properties in the Office files themselves. One parser is for Office 97-2003 files, and the other is for Office 2007-2010 files. Office files that contain the classification properties in the file can have the properties displayed in SharePoint if the property names match the SharePoint column names. Updating the column values in SharePoint updates the properties in the file. Note that SharePoint treats these names as case-sensitive, therefore the property definition's name defined in FSRM must have the same case when uploading to SharePoint.

You can use the classification and storage plugins or you can implement your own classification and storage plugins. Note that the built-in Content Classifier plugin uses the IFilter interface to search the content of the file.

When you run classification, FSRM evaluates a files for any rule that is applicable to that file (and committed to FSRM) and enabled. If reporting is enabled, FSRM also generates the classification reports.

See Also

IFsrmClassificationManager2
FsrmClassificationManager
Microsoft.Storage Namespace

Return to top