Method SendPager
- Namespace
- Skyline.DataMiner.Automation
- Assembly
- SLManagedAutomation.dll
SendPager(PagerOptions)
Sends a pager message.
void SendPager(PagerOptions options)
Parameters
options
PagerOptionsThe options.
Examples
PagerOptions myPagerOptions;
...
engine.SendPager(myPagerOptions);
Exceptions
- DataMinerException
Sending failed.
SendPager(string, string)
Sends a pager message.
void SendPager(string message, string to)
Parameters
Examples
engine.SendPager("The message I want to send.","USER:ADMIN");
Remarks
To specify the recipient, use
- a pager number,
- USER:, followed by the name of a DataMiner user, or
- GROUP:, followed by the name of a DataMiner user group.
Exceptions
- DataMinerException
Sending failed.