Ejemplo n.º 1
0
        public void OnTweetScreenshotReady(string html, int width, int height)
        {
            if (notificationScreenshotManager == null)
            {
                notificationScreenshotManager = new TweetScreenshotManager(this);
            }

            notificationScreenshotManager.Trigger(html, width, height);
        }
Ejemplo n.º 2
0
        public void OnTweetScreenshotReady(string html, int width)
        {
            if (notificationScreenshotManager == null)
            {
                notificationScreenshotManager = new TweetScreenshotManager(this, plugins);
            }

            notificationScreenshotManager.Trigger(html, width);
            AnalyticsFile.TweetScreenshots.Trigger();
        }
Ejemplo n.º 3
0
        public void OnTweetScreenshotReady(string html, int width, int height)
        {
            if (notificationScreenshotManager == null)
            {
                notificationScreenshotManager = new TweetScreenshotManager(this, plugins);
            }

            notificationScreenshotManager.Trigger(html, width, height);
            TriggerAnalyticsEvent(AnalyticsFile.Event.TweetScreenshot);
        }