public ReceivePortCollection(BizTalkReceivePortCollection ports)
 {
     if (ports == null)
     {
         throw new ArgumentNullException("ports");
     }
     BizTalkReceivePortCollection = ports;
 }
 public ReceivePortCollection(BizTalkReceivePortCollection ports)
 {
     BizTalkReceivePortCollection = ports ?? throw new ArgumentNullException(nameof(ports));
 }