Пример #1
0
        public ProjectNotifier(IAnkhServiceProvider context)
            : base(context)
        {
            uint cookie;

            if (VSErr.Succeeded(Shell.AdviseBroadcastMessages(this, out cookie)))
            {
                _cookie = cookie;
            }
        }
Пример #2
0
        public ProjectNotifier(IAnkhServiceProvider context)
            : base(context)
        {
            ThreadHelper.ThrowIfNotOnUIThread();

            uint cookie;

            if (VSErr.Succeeded(Shell.AdviseBroadcastMessages(this, out cookie)))
            {
                _cookie = cookie;
            }
        }