Class InterceptingClientApplicationMessageEnqueueEventArgs
public sealed class InterceptingClientApplicationMessageEnqueueEventArgs : EventArgs
- Inheritance
-
InterceptingClientApplicationMessageEnqueueEventArgs
- Inherited Members
Constructors
InterceptingClientApplicationMessageEnqueueEventArgs(string, string, MqttApplicationMessage)
public InterceptingClientApplicationMessageEnqueueEventArgs(string senderClientId, string receiverClientId, MqttApplicationMessage applicationMessage)
Parameters
senderClientId
stringreceiverClientId
stringapplicationMessage
MqttApplicationMessage
Properties
AcceptEnqueue
Gets or sets whether the enqueue of the application message should be performed or not. If set to False the client will not receive the application message.
public bool AcceptEnqueue { get; set; }
Property Value
ApplicationMessage
public MqttApplicationMessage ApplicationMessage { get; }
Property Value
CloseSenderConnection
Indicates if the connection with the sender should be closed.
public bool CloseSenderConnection { get; set; }
Property Value
ReceiverClientId
public string ReceiverClientId { get; }
Property Value
SenderClientId
public string SenderClientId { get; }