コード例 #1
0
        public int OnLoadCompleted(int fReload)
        {
            ConnectionPoint.Unadvise(Cookie);

            callDocumentOpened();

            return(VSConstants.S_OK);
        }
コード例 #2
0
 private void Unadvise()
 {
     if (m_connection != null && m_connection.Unadvise() == 0)
     {
         m_connection.Dispose();
         m_connection = null;
     }
 }
コード例 #3
0
        public int OnLoadCompleted(int fReload)
        {
            ConnectionPoint.Unadvise(Cookie);

            //callDocumentOpened();
            MessageBox.Show("TextBufferDataEventSink => OnLoadCompleted");
            return(VSConstants.S_OK);
        }
コード例 #4
0
        public int OnLoadCompleted(int fReload)
        {
            // The load procedure completed. Now we can safely notify the
            // JiraEditorLinkManager about it and so we don't need to listen to these
            // events any more.
            ConnectionPoint.Unadvise(Cookie);
            JiraEditorLinkManager.OnDocumentOpened(TextLines);

            return(VSConstants.S_OK);
        }