FsrmClassificationManagerClass Class

 

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)

System.Object
  Microsoft.Storage.FsrmClassificationManagerClass

<ClassInterfaceAttribute(0)>
<GuidAttribute("B15C0E47-C391-45B9-95C8-EB596C853F3A")>
Public Class FsrmClassificationManagerClass
	Implements IFsrmClassificationManager2, FsrmClassificationManager,
	DIFsrmClassificationEvents_Event

NameDescription
System_CAPS_pubmethodFsrmClassificationManagerClass()

Creates a new instance of the FsrmClassificationManagerClass object.

NameDescription
System_CAPS_pubpropertyClassificationLastError

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

System_CAPS_pubpropertyClassificationLastReportPathWithoutExtension

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

System_CAPS_pubpropertyClassificationReportEnabled

Determines whether classification reporting is enabled or not.

System_CAPS_pubpropertyClassificationReportFormats

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

System_CAPS_pubpropertyClassificationReportMailTo

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

System_CAPS_pubpropertyClassificationRunningStatus

Retrieves the running status of the classification.

System_CAPS_pubpropertyLogging

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

NameDescription
System_CAPS_pubmethodadd_OnFile(DIFsrmClassificationEvents_OnFileEventHandler)

Adds an OnFile event handler.

System_CAPS_pubmethodCancelClassification()

Cancels classification if it is running.

System_CAPS_pubmethodClassifyFiles(Object(), Object(), Object(), _FsrmGetFilePropertyOptions)

Retrieves or modifies the properties of one or more files/folders.

System_CAPS_pubmethodClearFileProperty(String, String)

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

System_CAPS_pubmethodCreateModuleDefinition(_FsrmPipelineModuleType)

Creates a module definition of the specified type.

System_CAPS_pubmethodCreatePropertyDefinition()

Creates a property definition.

System_CAPS_pubmethodCreateRule(_FsrmRuleType)

Creates a rule of the specified type.

System_CAPS_pubmethodEnumFileProperties(String, _FsrmGetFilePropertyOptions)

Enumerates the properties of the specified file.

System_CAPS_pubmethodEnumModuleDefinitions(_FsrmPipelineModuleType, _FsrmEnumOptions)

Enumerates the module definitions of the specified type.

System_CAPS_pubmethodEnumPropertyDefinitions(_FsrmEnumOptions)

Enumerates the property definitions.

System_CAPS_pubmethodEnumRules(_FsrmRuleType, _FsrmEnumOptions)

Enumerates the rules of the specified type.

System_CAPS_pubmethodEquals(Object)

(Inherited from Object.)

System_CAPS_protmethodFinalize()

(Inherited from Object.)

System_CAPS_pubmethodGetFileProperty(String, String, _FsrmGetFilePropertyOptions)

Retrieves the specified property from the file or folder.Windows Server 2008 R2:  Only files are supported until Windows Server 2012.

System_CAPS_pubmethodGetHashCode()

(Inherited from Object.)

System_CAPS_pubmethodGetModuleDefinition(String, _FsrmPipelineModuleType)

Retrieves the specified module definition.

System_CAPS_pubmethodGetPropertyDefinition(String)

Retrieves the specified property definition.

System_CAPS_pubmethodGetRule(String, _FsrmRuleType)

Retrieves the specified rule.

System_CAPS_pubmethodGetType()

(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()

(Inherited from Object.)

System_CAPS_pubmethodremove_OnFile(DIFsrmClassificationEvents_OnFileEventHandler)

Removes an OnFile event handler

System_CAPS_pubmethodRunClassification(_FsrmReportGenerationContext, String)

Runs classification rules and generates the classification report.

System_CAPS_pubmethodSetFileProperty(String, String, String)

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

System_CAPS_pubmethodToString()

(Inherited from Object.)

System_CAPS_pubmethodWaitForClassificationCompletion(Int32)

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

NameDescription
System_CAPS_pubeventOnFile

Represents a file classification event. The event receives properties of files that are processed by the ClassifyFiles method.

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 ClassifyFilesor 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.

Any public static ( Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top

Community Additions

ADD
Show: