Ejemplo n.º 1
0
 public ReceivePort(BizTalkReceivePort port)
 {
     if (port == null)
     {
         throw new ArgumentNullException("port");
     }
     BizTalkReceivePort = port;
     ReceiveLocations   = new ReceiveLocationCollection(BizTalkReceivePort.ReceiveLocations);
 }
Ejemplo n.º 2
0
 public ReceivePort(BizTalkReceivePort port)
 {
     BizTalkReceivePort = port ?? throw new ArgumentNullException(nameof(port));
     ReceiveLocations   = new ReceiveLocationCollection(BizTalkReceivePort.ReceiveLocations);
 }