Exemple #1
0
        public bool PI_AddOutgoingConnection(string pOutgoingConnectionName, OutgoingConnection outgoingConnection)
        {
            // Add the outgoing connection to our PluginOutputConnectionHelper so it can manage it.
            _outputHelper.AddOutgoingConnection(outgoingConnection);

            DebugMessage($"PI_AddOutgoingConnection() has been called; Name={pOutgoingConnectionName}");
            return(true);
        }
 public bool PI_AddOutgoingConnection(string pOutgoingConnectionName, OutgoingConnection outgoingConnection)
 {
     _output.AddOutgoingConnection(outgoingConnection);
     return(true);
 }
 public bool PI_AddOutgoingConnection(string pOutgoingConnectionName, OutgoingConnection outgoingConnection)
 {
     _outputHelper.AddOutgoingConnection(outgoingConnection);
     DebugMessage($"PI_AddOutgoingConnection() has been called; Name={pOutgoingConnectionName}");
     return(true);
 }