FsrmFileScreenManagerClass.ActionVariables Property
Retrieves a list of macros that you can specify in action property values.
Namespace: Microsoft.Storage
Assembly: srmlib (in srmlib.dll)
Syntax
public virtual object[] ActionVariables { get; }
public:
property array<Object^>^ ActionVariables {
virtual array<Object^>^ get();
}
abstract ActionVariables : Object[] with get
override ActionVariables : Object[] with get
Public Overridable ReadOnly Property ActionVariables As Object()
Property Value
Type: System.Object[]
Returns a Object containing a SAFEARRAY of variants that contain the available macros. The variant type is VT_BSTR. Use the bstrVal member to access the name.
Implements
IFsrmFileScreenManager.ActionVariables
Remarks
FSRM parses the action property for the macros and substitutes the macro string with the values that are specific to the event and computer on which the action occurred. For example, the following shows how you can format the message text for email: "User [Source Io Owner] has reached the quota limit for quota on [Quota Path] on server [Server]. The quota limit is [Quota Limit MB] MB and the current usage is [Quota Used MB] MB ([Quota Used Percent]% of limit)."
See Also
IFsrmFileScreenManager
FsrmFileScreenManager
FsrmFileScreenManagerClass Class
Microsoft.Storage Namespace
Return to top