Table of Contents

Method SendPager

Namespace
Skyline.DataMiner.Automation
Assembly
SLManagedAutomation.dll

SendPager(PagerOptions)

Sends a pager message.

public void SendPager(PagerOptions options)

Parameters

options PagerOptions

The options.

Examples

PagerOptions myPagerOptions;
...
engine.SendPager(myPagerOptions);

Exceptions

DataMinerException

Sending failed.

SendPager(string, string)

Sends a pager message.

public void SendPager(string message, string to)

Parameters

message string

The message.

to string

The recipients.

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.