Neuron®
The Neuron® is the basis for the creation of open and secure federated networks for smart societies.
Loading...
Searching...
No Matches
DeliveryStatus.cs
1using System;
2using System.Collections.Generic;
3using System.Text;
4
6{
12 public class DeliveryStatus
13 {
14 private readonly PerMessageFields perMessage;
15 private readonly PerRecipientFields[] perRecipients;
16 private readonly string text;
17
28 {
29 this.text = Text;
30 this.perMessage = PerMessage;
31 this.perRecipients = PerRecipients;
32 }
33
37 public string Text => this.text;
38
42 public PerMessageFields PerMessage => this.perMessage;
43
47 public PerRecipientFields[] PerRecipients => this.perRecipients;
48 }
49}
Delivery Status information, as defined in RFC 3464:
string Text
Text representation of the status message.
DeliveryStatus(string Text, PerMessageFields PerMessage, PerRecipientFields[] PerRecipients)
Delivery Status information, as defined in RFC 3464:
PerRecipientFields[] PerRecipients
Information about recipients
PerMessageFields PerMessage
Information about message
Information fields for the message.
Information fields for one recipient.