/// <summary> /// Initializes a new instance of the <see cref="ConnectionAckData"/> class /// </summary> /// <param name="status">The status incorporates a global signal regarding the response.</param> /// <param name="successAckData">The sucess response object belonging to the acknowledgement.</param> public ConnectionAckData(StatusCode status, ConnectionData successAckData) { this.status = status; this.ackData = new ConnectionAckTypeData(successAckData); }
public ConnectionAckTypeData(ConnectionData successAckTypeData) { this.successAckTypeData = successAckTypeData; }