public SendComponent() : base("Send", "Send", "Sends data to a Speckle server (or any other provided transport).", "Speckle 2",
                                      "   Send/Receive")
        {
            BaseWorker = new SendComponentWorker(this);
            Attributes = new SendComponentAttributes(this);

            SetDefaultKitAndConverter();
        }
Esempio n. 2
0
        public SendComponent() : base("Send", "Send", "Sends data to a Speckle server (or any other provided transport).", ComponentCategories.PRIMARY_RIBBON,
                                      ComponentCategories.SEND_RECEIVE)
        {
            Tracker.TrackPageview(Tracker.SEND_ADDED);

            BaseWorker = new SendComponentWorker(this);
            Attributes = new SendComponentAttributes(this);
        }