Beispiel #1
0
 /// <summary>
 /// Primary constructor for the alert_notification PDU
 /// </summary>
 /// <param name="saddr">Address of the MS which has changed state.</param>
 /// <param name="esmeaddr">Address of the ESME which requested an alert.</param>
 /// <param name="status">Status of the MS</param>
 public alert_notification(address saddr, address esmeaddr, MSStatus status)
     : this()
 {
     this.SourceAddress  = saddr;
     this.ESMEAddress    = esmeaddr;
     this.MSAvailability = status;
 }
 /// <summary>
 /// Parameterized constructor
 /// </summary>
 public ms_availability_status(MSStatus state) : base(TlvTag)
 {
     this.Value = state;
 }