Nie możesz wybrać więcej, niż 25 tematów
Tematy muszą się zaczynać od litery lub cyfry, mogą zawierać myślniki ('-') i mogą mieć do 35 znaków.
|
- namespace MQTTnet.Server
- {
- public class MqttApplicationMessageInterceptorContext
- {
- public MqttApplicationMessageInterceptorContext(string clientId, MqttApplicationMessage applicationMessage)
- {
- ClientId = clientId;
- ApplicationMessage = applicationMessage;
- }
-
- public string ClientId { get; }
-
- public MqttApplicationMessage ApplicationMessage { get; set; }
-
- public bool AcceptPublish { get; set; } = true;
-
- public bool CloseConnection { get; set; }
- }
- }
|