in src/Proton/Types/Transport/Flow.cs [336:351]
public override string ToString()
{
return "Flow{" +
"nextIncomingId=" + (HasNextIncomingId() ? nextIncomingId : "null") +
", incomingWindow=" + (HasIncomingWindow() ? incomingWindow : "null") +
", nextOutgoingId=" + (HasNextOutgoingId() ? nextOutgoingId : "null") +
", outgoingWindow=" + (HasOutgoingWindow() ? outgoingWindow : "null") +
", handle=" + (HasHandle() ? handle : "null") +
", deliveryCount=" + (HasDeliveryCount() ? deliveryCount : "null") +
", linkCredit=" + (HasLinkCredit() ? linkCredit : "null") +
", available=" + (HasAvailable() ? available : "null") +
", drain=" + (HasDrain() ? drain : "null") +
", echo=" + (HasEcho() ? echo : "null") +
", properties=" + properties +
'}';
}