DEPRECATED: Diffusion Silverlight Classic API  5.9.4
 All Classes Namespaces Functions Variables Enumerations Enumerator Properties Events
PushTechnology.Transports.DiffusionClient Class Reference

This class controls the way that a connection is made to Diffusion. The supplied connection details determine how connections are made, i.e. 'http://localhost:8080' or 'dpt://localhost:8080'. Note that more than one set of connection details may be supplied using the AddServerDetails(ServerDetails) method, and cleared using the ClearServerDetails method. More...

Inheritance diagram for PushTechnology.Transports.DiffusionClient:
PushTechnology.Transports.IDiffusionClient

Public Member Functions

PagedTopicHandler CreatePagedTopicHandler (TopicMessage message, IPagedTopicListener listener)
 Creates a handler object for a 'Paged' topic. This would be called in response to receiving an 'IsPagedLoad' message from a paged topic as a result of subscribing to it. Note that no other messages would be received from a service topic other than via the specified IPagedTopicListener. More...
 
 DiffusionClient (Dispatcher dispatcher)
 Constructor. More...
 
 DiffusionClient (Dispatcher dispatcher, byte socketTransportType, string httpTransportType)
 Constructor. More...
 
void AddServerDetails (ServerDetails details)
 Adds the details of a Diffusion connection descriptor. More...
 
void ClearServerDetails ()
 Clears the server details. More...
 
void Dispose ()
 Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. More...
 
int AddTopicListener (string pattern, Func< TopicMessage, bool > function, object context)
 Adds a topic listener. More...
 
void RemoveTopicListener (int handle)
 Removes a topic listener given its handle. More...
 
void RemoveAllTopicListeners ()
 Removes all topic listeners. More...
 
void Connect (ConnectionDetails connectionDetails=null)
 Connect to the Diffusion server using the specified connection details. The connection details should be instantiated and supplied prior to calling this. More...
 
void Reconnect ()
 Attempts to re-establish a connection to the Diffusion server. More...
 
void Close ()
 Closes down gracefully and disconnects from the Diffusion server. Note that topic listeners must be explicitly removed by the developer. More...
 
void SendTopicMessage (TopicMessage message)
 Sends a topic message with no encoding to the Diffusion server. More...
 
void SendTopicMessageEncrypted (TopicMessage message)
 Sends a topic message to the Diffusion server and encrypts it automatically prior to sending to Diffusion. More...
 
void SendTopicMessageCompressed (TopicMessage message)
 Sends a topic message to the Diffusion server and compresses it automatically prior to sending to Diffusion. More...
 
void SendTopicMessageBase64 (TopicMessage message)
 Sends a Base64 encoded topic message to the Diffusion server and Base64 encodes it automatically prior to sending to Diffusion. More...
 
void Send (string topic, string message)
 Sends a message to a particular topic. More...
 
void Subscribe (string topics)
 Subscribes to topics (multiple topics should be comma-delimited) More...
 
void Unsubscribe (string topics)
 Unsubscribe from topics (multiple topics should be comma-delimited). More...
 
void Ping (string timeStamp=null, string queueSize="0")
 Send a ping request to the Diffusion server; the server will respond with a ping message. Note that if empty values are supplied, they will be automatically generated. More...
 
void Fetch (string topic, params string[] headers)
 Fetch the initial topic load for the topic. More...
 
ServiceTopicHandler CreateServiceTopicHandler (TopicMessage message, IServiceTopicListener listener)
 Creates a handler object for a 'Service' topic. This would be called in response to receiving an 'IsServiceLoad' message from a service topic as a result of subscribing to it. Note that no other messages would be received from a service topic other than via the specified IServiceTopicListener. More...
 
void SendCredentials (DiffusionClientCredentials credentials)
 Sends the credentials to the Diffusion server. If the credentials are rejected by the server, a DiffusionEventBus.ServerRejectedCredentials event will be fired. More...
 
void Acknowledge (TopicMessage message)
 Sends a message acknowledgement back to the Diffusion server if auto acknowledgements are not enabled. More...
 
void SendAckResponse (string ackId)
 Used to manually send an acknowledgement message to the Diffusion server. More...
 
void RaiseTraceDebugMessage (object sender, string message)
 Routes an internal 'debug' message to subscribers. More...
 

Static Public Member Functions

static string GetVersionNumber ()
 Returns the version number of this assembly in the form 'DiffusionClient X.X.X.X'. More...
 

Properties

bool IsConnected [get]
 Returns the connection state of the active transport. More...
 
string ClientId [get]
 Returns the client id of the active transport. More...
 
int ServerProtocolVersion [get]
 Returns the server protocol version. More...
 
string Host [get, set]
 Get/set the host or IP address of the Diffusion server that the Diffusion client will try to connect to if using the Socket transport. More...
 
int Port [get, set]
 Get/set the port of the Diffusion server that the Diffusion client will try to connect to if using the Socket transport. More...
 
string ServerContext [get, set]
 Get/set the http context of the Diffusion server. Defaults to '/diffusion/'. More...
 
int HttpConnectivityMonitorFrequency [get, set]
 The frequency at which to monitor http connectivity. More...
 
string Topics [get, set]
 Get/set the topics to connect to the Diffusion server with. More...
 
string Url [get, set]
 Get/set the url which will be used if the Http transport is to be used. The /diffusion context will be automatically added. More...
 
TransportType TransportType [get, set]
 Get/set the current transport mode. If connected this will reflect which transport type is being used in the current session with the Diffusion server. More...
 
DiffusionClientCredentials Credentials [get, set]
 Get/set the credentials which will be used in the connection to the Diffusion server. More...
 
bool IsHandlingAcks [get, set]
 Sets whether message acknowledgement is automatic (true) or manual (false). More...
 
bool AutoAck [get, set]
 Get/set whether the API automatically sends message acknowledgements back to the Diffusion server. If true, message acknowledgements will be sent automatically, otherwise the developer will have to manually respond to the acknowledge message via the IDiffusionTransport.Acknowlege() method. More...
 
int ClientProtocolVersion [get]
 Returns the client protocol version. More...
 
bool AutoFailover [get, set]
 Get/set whether to set the 'auto failover' option. By default when a connection is lost then notification is given and the connection simply closed. However, if 'auto failover' is specified then if a connection is lost then an automatic attempt will be made to connect using the next server details (assuming more than one was provided). More...
 
bool IsLoadBalancing [get, set]
 Get/set whether we will be load-balancing the connection attempts. More...
 
bool RestoreState [get, set]
 Get/set whether to attempt to restore the state, (i.e. topic subscriptions) after a loss of connection and subsequent reconnection. More...
 
bool Cascade [get, set]
 Get/set whether to cycle through all connection details to attempt to establish a connection to the Diffusion server. More...
 
int TransportTimeout [get, set]
 Gets/sets the transport timeout. More...
 
NetworkStackType StackType [get, set]
 Get/set the networking stack to use. More...
 
ServerDetails ActiveServerDetails [get]
 Gets the server details which are currently in use for connection. More...
 
DateTime LastInteraction [get]
 Returns the time of the last interaction (send or receive) with the Diffusion server. More...
 
EventHandler
< ConnectionDetailsAcquiredEventArgs
ConnectionDetailsAcquired
 The event fired when a set of server details has been acquired prior to a connection attempt. More...
 
EventHandler< EventArgs > ConnectionSequenceExhausted
 The event fired when the sequence of connection details has been exhausted. More...
 
- Properties inherited from PushTechnology.Transports.IDiffusionClient
bool IsConnected [get]
 Returns the connection state of the active transport. More...
 
string ClientId [get]
 Returns the client id of the active transport. More...
 
int ServerProtocolVersion [get]
 Returns the server protocol version. More...
 
string Host [get, set]
 Get/set the host or IP address of the Diffusion server that the Diffusion client will try to connect to if using the Socket transport. More...
 
int Port [get, set]
 Get/set the port of the Diffusion server that the Diffusion client will try to connect to if using the Socket transport. More...
 
string Topics [get, set]
 Get/set the topics to connect to the Diffusion server with. More...
 
string Url [get, set]
 Get/set the url which will be used if the Http transport is to be used. The /diffusion context will be automatically added. More...
 
TransportType TransportType [get, set]
 Get/set the current transport mode. If connected this will reflect which transport type is being used in the current session with the Diffusion server. More...
 
DiffusionClientCredentials Credentials [get, set]
 Get/set the credentials which will be used in the connection to the Diffusion server. More...
 
bool IsHandlingAcks [get, set]
 Sets whether message acknowledgement is automatic (true) or manual (false). More...
 
bool AutoAck [get, set]
 Get/set whether the API automatically sends message acknowledgements back to the Diffusion server. More...
 
int ClientProtocolVersion [get]
 Returns the client protocol version. More...
 
int TransportTimeout [get, set]
 Gets/sets the transport timeout. More...
 
NetworkStackType StackType [get, set]
 Get/set the networking stack to use. More...
 
string ServerContext [get, set]
 Get/set the http context of the Diffusion server. Defaults to '/diffusion/'. More...
 
int HttpConnectivityMonitorFrequency [get, set]
 The frequency at which to monitor http connectivity. More...
 
bool AutoFailover [get, set]
 Get/set whether to set the 'auto failover' option. More...
 
bool IsLoadBalancing [get, set]
 Get/set whether we will be load-balancing the connection attempts. More...
 
bool RestoreState [get, set]
 Get/set whether to attempt to restore the state, i.e. topic subscriptions etc. after a loss of connection and subsequent reconnection. More...
 
bool Cascade [get, set]
 Get/set whether to cycle through all connection details to attempt to establish a connection to the Diffusion server. More...
 
ServerDetails ActiveServerDetails [get]
 Get the server details that are currently being used for connection to Diffusion. More...
 
DateTime LastInteraction [get]
 Returns the time of the last interaction (send or receive) with the Diffusion server. More...
 

Events

EventHandler
< TopicMessageEventArgs
MessageReceived
 The event fired when a message is received from the Diffusion server. More...
 
EventHandler
< DiffusionConnectionStatusEventArgs > 
ConnectionStatus
 The event fired when the connection status to the Diffusion server changes. More...
 
EventHandler
< TopicMessageEventArgs
ServerRejectedCredentials
 The event fired when the Diffusion server has rejected credentials. More...
 
EventHandler
< MessageNotAcknowledgedEventArgs
MessageNotAcknowledged
 The event fired when a message has not been acknowledged by the Diffusion server. More...
 
EventHandler
< AckResponseMessageEventArgs
AckMessageReceived
 The event fired when an acknowledgment received message is received from the Diffusion server. More...
 
EventHandler
< TraceMessageEventArgs
DiffusionTraceEvent
 The event fired when 'debug' information is sent. More...
 
EventHandler
< TopicStatusMessageEventArgs
TopicStatusMessageReceived
 The event fired when a topic status message is received. More...
 
- Events inherited from PushTechnology.Transports.IDiffusionClient
EventHandler
< TopicMessageEventArgs
MessageReceived
 The event fired when a message is received from the Diffusion server. More...
 
EventHandler
< DiffusionConnectionStatusEventArgs > 
ConnectionStatus
 The event fired when the connection status to the Diffusion server changes. More...
 
EventHandler
< TopicMessageEventArgs
ServerRejectedCredentials
 The event fired when the Diffusion server has rejected credentials. More...
 
EventHandler
< MessageNotAcknowledgedEventArgs
MessageNotAcknowledged
 The event fired when a message has not been acknowledged by the Diffusion server. More...
 
EventHandler
< AckResponseMessageEventArgs
AckMessageReceived
 The event fired when an acknowledgement received message is received from the Diffusion server. More...
 
EventHandler
< TraceMessageEventArgs
DiffusionTraceEvent
 The event fired when 'debug' information is sent. More...
 
EventHandler
< TopicStatusMessageEventArgs
TopicStatusMessageReceived
 The event fired when a topic status message is received. More...
 
EventHandler
< ConnectionDetailsAcquiredEventArgs
ConnectionDetailsAcquired
 The event fired when a set of server details has been acquired prior to a connection attempt. More...
 
EventHandler< EventArgs > ConnectionSequenceExhausted
 The event fired when the sequence of connection details has been exhausted. More...
 

Detailed Description

This class controls the way that a connection is made to Diffusion. The supplied connection details determine how connections are made, i.e. 'http://localhost:8080' or 'dpt://localhost:8080'. Note that more than one set of connection details may be supplied using the AddServerDetails(ServerDetails) method, and cleared using the ClearServerDetails method.

    Alternatively the connection details may be provided by instantiating a
    <see cref="ConnectionDetails"/> object and adding <see cref="ServerDetails"/> objects to it,
    then the object should be passed to the <see cref="Connect(ConnectionDetails)"/> method.

Constructor & Destructor Documentation

PushTechnology.Transports.DiffusionClient.DiffusionClient ( Dispatcher  dispatcher)

Constructor.

PushTechnology.Transports.DiffusionClient.DiffusionClient ( Dispatcher  dispatcher,
byte  socketTransportType,
string  httpTransportType 
)

Constructor.

Member Function Documentation

void PushTechnology.Transports.DiffusionClient.Acknowledge ( TopicMessage  message)

Sends a message acknowledgement back to the Diffusion server if auto acknowledgements are not enabled.

Parameters
messageThe topic message.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.AddServerDetails ( ServerDetails  details)

Adds the details of a Diffusion connection descriptor.

Parameters
detailsThe server details.

Implements PushTechnology.Transports.IDiffusionClient.

int PushTechnology.Transports.DiffusionClient.AddTopicListener ( string  pattern,
Func< TopicMessage, bool >  function,
object  context 
)

Adds a topic listener.

Parameters
patternThe regular expression pattern for the topic(s) of interest.
functionThe callback method for message delivery.
contextA context object.
Returns

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.ClearServerDetails ( )

Clears the server details.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.Close ( )

Closes down gracefully and disconnects from the Diffusion server. Note that topic listeners must be explicitly removed by the developer.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.Connect ( ConnectionDetails  connectionDetails = null)

Connect to the Diffusion server using the specified connection details. The connection details should be instantiated and supplied prior to calling this.

Parameters
connectionDetailsThe connection details.
Exceptions
ArgumentExceptionThrown if connection details are not supplied.

Implements PushTechnology.Transports.IDiffusionClient.

PagedTopicHandler PushTechnology.Transports.DiffusionClient.CreatePagedTopicHandler ( TopicMessage  message,
IPagedTopicListener  listener 
)

Creates a handler object for a 'Paged' topic. This would be called in response to receiving an 'IsPagedLoad' message from a paged topic as a result of subscribing to it. Note that no other messages would be received from a service topic other than via the specified IPagedTopicListener.

Parameters
messageThe load message received from the topic.
listenerAn object that is to receive all notifications from the Topic.
Returns
The handler which may be used to send requests to the topic.

Implements PushTechnology.Transports.IDiffusionClient.

ServiceTopicHandler PushTechnology.Transports.DiffusionClient.CreateServiceTopicHandler ( TopicMessage  message,
IServiceTopicListener  listener 
)

Creates a handler object for a 'Service' topic. This would be called in response to receiving an 'IsServiceLoad' message from a service topic as a result of subscribing to it. Note that no other messages would be received from a service topic other than via the specified IServiceTopicListener.

Parameters
messageThe load message received from the topic.
listenerAn object that is to receive all Service replies and notifications.
Returns
The handler which may be used to send service requests.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.Dispose ( )

Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.Fetch ( string  topic,
params string[]  headers 
)

Fetch the initial topic load for the topic.

Parameters
topicThe topic on which to fetch the initial topic load.
headersOptional headers, which could include a correlation id.
Exceptions
UnsupportedServerMethodException

Implements PushTechnology.Transports.IDiffusionClient.

static string PushTechnology.Transports.DiffusionClient.GetVersionNumber ( )
static

Returns the version number of this assembly in the form 'DiffusionClient X.X.X.X'.

Returns
void PushTechnology.Transports.DiffusionClient.Ping ( string  timeStamp = null,
string  queueSize = "0" 
)

Send a ping request to the Diffusion server; the server will respond with a ping message. Note that if empty values are supplied, they will be automatically generated.

Parameters
timeStampThe time, measured in milliseconds, between the current time and midnight, January 1, 1970 UTC.
queueSizeA placeholder for the queue size.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.RaiseTraceDebugMessage ( object  sender,
string  message 
)

Routes an internal 'debug' message to subscribers.

Parameters
senderThe sender of the message.
messageThe message to send.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.Reconnect ( )

Attempts to re-establish a connection to the Diffusion server.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.RemoveAllTopicListeners ( )

Removes all topic listeners.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.RemoveTopicListener ( int  handle)

Removes a topic listener given its handle.

Parameters
handleThe 'handle', or identifier of the topic listener.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.Send ( string  topic,
string  message 
)

Sends a message to a particular topic.

Parameters
topicThe topic which should receive the message.
messageThe topic message to send.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.SendAckResponse ( string  ackId)

Used to manually send an acknowledgement message to the Diffusion server.

Parameters
ackIdThe acknowledgement id.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.SendCredentials ( DiffusionClientCredentials  credentials)

Sends the credentials to the Diffusion server. If the credentials are rejected by the server, a DiffusionEventBus.ServerRejectedCredentials event will be fired.

Parameters
credentialsThe credentials to send to the server.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.SendTopicMessage ( TopicMessage  message)

Sends a topic message with no encoding to the Diffusion server.

Parameters
messageThe topic message to send.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.SendTopicMessageBase64 ( TopicMessage  message)

Sends a Base64 encoded topic message to the Diffusion server and Base64 encodes it automatically prior to sending to Diffusion.

Parameters
messageThe topic message to send.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.SendTopicMessageCompressed ( TopicMessage  message)

Sends a topic message to the Diffusion server and compresses it automatically prior to sending to Diffusion.

Parameters
messageThe topic message to send.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.SendTopicMessageEncrypted ( TopicMessage  message)

Sends a topic message to the Diffusion server and encrypts it automatically prior to sending to Diffusion.

Parameters
messageThe topic message to send.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.Subscribe ( string  topics)

Subscribes to topics (multiple topics should be comma-delimited)

Parameters
topicsThe topic names to subscribe to.

Implements PushTechnology.Transports.IDiffusionClient.

void PushTechnology.Transports.DiffusionClient.Unsubscribe ( string  topics)

Unsubscribe from topics (multiple topics should be comma-delimited).

Parameters
topicsThe topic names to unsubscribe from.

Implements PushTechnology.Transports.IDiffusionClient.

Property Documentation

ServerDetails PushTechnology.Transports.DiffusionClient.ActiveServerDetails
get

Gets the server details which are currently in use for connection.

bool PushTechnology.Transports.DiffusionClient.AutoAck
getset

Get/set whether the API automatically sends message acknowledgements back to the Diffusion server. If true, message acknowledgements will be sent automatically, otherwise the developer will have to manually respond to the acknowledge message via the IDiffusionTransport.Acknowlege() method.

bool PushTechnology.Transports.DiffusionClient.AutoFailover
getset

Get/set whether to set the 'auto failover' option. By default when a connection is lost then notification is given and the connection simply closed. However, if 'auto failover' is specified then if a connection is lost then an automatic attempt will be made to connect using the next server details (assuming more than one was provided).

bool PushTechnology.Transports.DiffusionClient.Cascade
getset

Get/set whether to cycle through all connection details to attempt to establish a connection to the Diffusion server.

string PushTechnology.Transports.DiffusionClient.ClientId
get

Returns the client id of the active transport.

int PushTechnology.Transports.DiffusionClient.ClientProtocolVersion
get

Returns the client protocol version.

EventHandler<ConnectionDetailsAcquiredEventArgs> PushTechnology.Transports.DiffusionClient.ConnectionDetailsAcquired
addremove

The event fired when a set of server details has been acquired prior to a connection attempt.

EventHandler<EventArgs> PushTechnology.Transports.DiffusionClient.ConnectionSequenceExhausted
addremove

The event fired when the sequence of connection details has been exhausted.

DiffusionClientCredentials PushTechnology.Transports.DiffusionClient.Credentials
getset

Get/set the credentials which will be used in the connection to the Diffusion server.

string PushTechnology.Transports.DiffusionClient.Host
getset

Get/set the host or IP address of the Diffusion server that the Diffusion client will try to connect to if using the Socket transport.

int PushTechnology.Transports.DiffusionClient.HttpConnectivityMonitorFrequency
getset

The frequency at which to monitor http connectivity.

bool PushTechnology.Transports.DiffusionClient.IsConnected
get

Returns the connection state of the active transport.

bool PushTechnology.Transports.DiffusionClient.IsHandlingAcks
getset

Sets whether message acknowledgement is automatic (true) or manual (false).

bool PushTechnology.Transports.DiffusionClient.IsLoadBalancing
getset

Get/set whether we will be load-balancing the connection attempts.

DateTime PushTechnology.Transports.DiffusionClient.LastInteraction
get

Returns the time of the last interaction (send or receive) with the Diffusion server.

int PushTechnology.Transports.DiffusionClient.Port
getset

Get/set the port of the Diffusion server that the Diffusion client will try to connect to if using the Socket transport.

bool PushTechnology.Transports.DiffusionClient.RestoreState
getset

Get/set whether to attempt to restore the state, (i.e. topic subscriptions) after a loss of connection and subsequent reconnection.

string PushTechnology.Transports.DiffusionClient.ServerContext
getset

Get/set the http context of the Diffusion server. Defaults to '/diffusion/'.

int PushTechnology.Transports.DiffusionClient.ServerProtocolVersion
get

Returns the server protocol version.

NetworkStackType PushTechnology.Transports.DiffusionClient.StackType
getset

Get/set the networking stack to use.

string PushTechnology.Transports.DiffusionClient.Topics
getset

Get/set the topics to connect to the Diffusion server with.

int PushTechnology.Transports.DiffusionClient.TransportTimeout
getset

Gets/sets the transport timeout.

TransportType PushTechnology.Transports.DiffusionClient.TransportType
getset

Get/set the current transport mode. If connected this will reflect which transport type is being used in the current session with the Diffusion server.

string PushTechnology.Transports.DiffusionClient.Url
getset

Get/set the url which will be used if the Http transport is to be used. The /diffusion context will be automatically added.

Event Documentation

EventHandler<AckResponseMessageEventArgs> PushTechnology.Transports.DiffusionClient.AckMessageReceived

The event fired when an acknowledgment received message is received from the Diffusion server.

EventHandler<DiffusionConnectionStatusEventArgs> PushTechnology.Transports.DiffusionClient.ConnectionStatus

The event fired when the connection status to the Diffusion server changes.

EventHandler<TraceMessageEventArgs> PushTechnology.Transports.DiffusionClient.DiffusionTraceEvent

The event fired when 'debug' information is sent.

EventHandler<MessageNotAcknowledgedEventArgs> PushTechnology.Transports.DiffusionClient.MessageNotAcknowledged

The event fired when a message has not been acknowledged by the Diffusion server.

EventHandler<TopicMessageEventArgs> PushTechnology.Transports.DiffusionClient.MessageReceived

The event fired when a message is received from the Diffusion server.

EventHandler<TopicMessageEventArgs> PushTechnology.Transports.DiffusionClient.ServerRejectedCredentials

The event fired when the Diffusion server has rejected credentials.

EventHandler<TopicStatusMessageEventArgs> PushTechnology.Transports.DiffusionClient.TopicStatusMessageReceived

The event fired when a topic status message is received.


The documentation for this class was generated from the following file: