Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Port" /> class.
 /// </summary>
 /// <param name="portType">Type of the port.</param>
 /// <param name="acceptedConnections">The accepted connections.</param>
 /// <param name="text">The text.</param>
 public Port(PortType portType, AcceptedConnections acceptedConnections, string text) : this(portType, acceptedConnections)
 {
     this.Text = text;
 }
Exemple #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="Port" /> class.
 /// </summary>
 /// <param name="portType">Type of the port.</param>
 /// <param name="acceptedConnections">The accepted connections.</param>
 public Port(PortType portType, AcceptedConnections acceptedConnections) : this()
 {
     this.PortType            = portType;
     this.AcceptedConnections = acceptedConnections;
 }
Exemple #3
0
 public CSPort(PortType portType, AcceptedConnections acceptedConnections, string text) : base(portType, acceptedConnections, text)
 {
 }
Exemple #4
0
 public CSPort(PortType portType, AcceptedConnections acceptedConnections, string text, string dataTypeSymbolName) : base(portType, acceptedConnections, text)
 {
     this.SymbolName = dataTypeSymbolName;
 }
Exemple #5
0
 public CSPort(PortType portType, AcceptedConnections acceptedConnections) : base(portType, acceptedConnections)
 {
 }