IFsrmRule.LastModified Property
Retrieves the date for the last time the rule was modified.
Namespace: Microsoft.Storage
Assembly: srmlib (in srmlib.dll)
Syntax
object LastModified { get; }
property Object^ LastModified {
Object^ get();
}
abstract LastModified : Object with get
ReadOnly Property LastModified As Object
Property Value
Type: System.Object
A Object that contains a pointer to a VARIANT that contains the date for the last time the rule was modified. The variant is of type VT_DECIMAL. To access a value that can be directly converted into a FILETIME structure, query the Low64 member of the decVal member of the variant.
Remarks
The last-modified time is set each time you commit the rule.
The last-modified time is used by FSRM to determine whether the rule needs to be run. If any rule returns a time that is more recent than the time a file was last modified, FSRM will re-evaluate any applicable rules for that file.
See Also
IFsrmRule Interface
Microsoft.Storage Namespace
Return to top