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
Properties
Count
Returns the number of messages waiting to be sent.
public int Count { get; }
Property Value
this[object]
This method returns the message at the given location.
public BrowserMessage this[object pIndex] { get; }
Parameters
pIndex
objectThe 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
GetEnumerator()
This method returns the enumerator
public IEnumerator GetEnumerator()
Returns
Last()
This message returns the last message in the queue
public BrowserMessage Last()
Returns
Remove(object)
This message removes the message at the given location.
public void Remove(object pIndex)
Parameters
pIndex
objectThe one-based index (int) of the message to remove.