NodeSet.Contains
Syntax:
Parameters:
<Node> (required)
Reference to the exchange plan node that must be checked for inclusion in the node set.
Returned value:
True - node set contains the node; False - otherwise.
Description:
Availability:
Example:
Node = ExchangePlans.EP1.FindByCode("Shop11"); If Ep.DataExchange.Receivers.Contains(Node) Then // Some actions EndIf; |