Table of Contents

Class InterceptingClientApplicationMessageEnqueueEventArgs

Namespace
MQTTnet.Server
Assembly
MQTTnet.dll
public sealed class InterceptingClientApplicationMessageEnqueueEventArgs : EventArgs
Inheritance
InterceptingClientApplicationMessageEnqueueEventArgs
Inherited Members

Constructors

InterceptingClientApplicationMessageEnqueueEventArgs(string, string, MqttApplicationMessage)

public InterceptingClientApplicationMessageEnqueueEventArgs(string senderClientId, string receiverClientId, MqttApplicationMessage applicationMessage)

Parameters

senderClientId string
receiverClientId string
applicationMessage 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

bool

ApplicationMessage

public MqttApplicationMessage ApplicationMessage { get; }

Property Value

MqttApplicationMessage

CloseSenderConnection

Indicates if the connection with the sender should be closed.

public bool CloseSenderConnection { get; set; }

Property Value

bool

ReceiverClientId

public string ReceiverClientId { get; }

Property Value

string

SenderClientId

public string SenderClientId { get; }

Property Value

string