// Called by Alteryx to notify the plugin of a new ougoing connection.
        public bool PI_AddOutgoingConnection(string pOutgoingConnectionName, AlteryxRecordInfoNet.OutgoingConnection outgoingConnection)
        {
            // Add the outgoing connection to our PluginOutputConnectionHelper so it can manage it.
            if (pOutgoingConnectionName == "Attachment Output")
            {
                m_attachmentOutputHelper.AddOutgoingConnection(outgoingConnection);
            }
            else
            {
                m_outputHelper.AddOutgoingConnection(outgoingConnection);
            }

            // Return true to indicate that we accepted the connection.
            return(true);
        }
Exemple #2
0
 public bool PI_AddOutgoingConnection(string pOutgoingConnectionName, AlteryxRecordInfoNet.OutgoingConnection outgoingConnection)
 {
     output.AddOutgoingConnection(outgoingConnection);
     return(true);
 }