Table of Contents

Class BrowserMessages

Namespace
PolarStudio
Assembly
PolarStudio.dll

This class contains the messages that are to be sent to the browser of the user.

public class BrowserMessages : IEnumerable
Inheritance
BrowserMessages
Implements
Inherited Members
Extension Methods

Fields

SuppressDuplicates

This property configures the mechanism to suppress multiple identical messages

public BrowserMessages.SuppressDuplicatesEnum SuppressDuplicates

Field Value

BrowserMessages.SuppressDuplicatesEnum

Properties

Count

Returns the number of messages waiting to be sent.

public int Count { get; }

Property Value

int

this[object]

This method returns the message at the given location.

public BrowserMessage this[object pIndex] { get; }

Parameters

pIndex object

The one-based index (int) of the message to return.

Property Value

BrowserMessage

The BrowserMessage at the given location.

Methods

First()

This message returns the first message in the queue

public BrowserMessage First()

Returns

BrowserMessage

GetEnumerator()

This method returns the enumerator

public IEnumerator GetEnumerator()

Returns

IEnumerator

Last()

This message returns the last message in the queue

public BrowserMessage Last()

Returns

BrowserMessage

Remove(object)

This message removes the message at the given location.

public void Remove(object pIndex)

Parameters

pIndex object

The one-based index (int) of the message to remove.