Table of Contents

Class Alert

Namespace
Acuit.Pinpoint.Client2
Assembly
Acuit.Pinpoint.Client2.dll

An alert message.

[DataContract]
public class Alert : IExtensibleDataObject
Inheritance
Alert
Implements
Inherited Members

Constructors

Alert(int, string, bool)

Initializes a new instance of the Alert class.

public Alert(int id, string message, bool requiresAuthorization)

Parameters

id int

The alert id.

message string

The alert message text.

requiresAuthorization bool

Whether this alert requires authorization to acknowledge at the workstation.

Properties

ExtensionData

Gets or sets the structure that contains extra data.

public virtual ExtensionDataObject ExtensionData { get; set; }

Property Value

ExtensionDataObject

Id

Gets the alert id.

[DataMember]
public int Id { get; }

Property Value

int

Message

Gets the alert message text.

[DataMember]
public string Message { get; }

Property Value

string

RequiresAuthorization

Gets whether this alert requires authorization to acknowledge at the workstation.

[DataMember]
public bool RequiresAuthorization { get; }

Property Value

bool

Methods

ToString()

Returns the Message value as a string that represents the current object.

public override string ToString()

Returns

string

A string that represents the current object.