⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 applicationevents_10_sinkhelper.cs

📁 破解的飞信源代码
💻 CS
字号:
namespace Microsoft.Office.Interop.Outlook
{
    using System;
    using System.Runtime.InteropServices;

    [ClassInterface(ClassInterfaceType.None)]
    public sealed class ApplicationEvents_10_SinkHelper : ApplicationEvents_10
    {
        public ApplicationEvents_10_AdvancedSearchCompleteEventHandler m_AdvancedSearchCompleteDelegate = null;
        public ApplicationEvents_10_AdvancedSearchStoppedEventHandler m_AdvancedSearchStoppedDelegate = null;
        public int m_dwCookie = 0;
        public ApplicationEvents_10_ItemSendEventHandler m_ItemSendDelegate = null;
        public ApplicationEvents_10_MAPILogonCompleteEventHandler m_MAPILogonCompleteDelegate = null;
        public ApplicationEvents_10_NewMailEventHandler m_NewMailDelegate = null;
        public ApplicationEvents_10_OptionsPagesAddEventHandler m_OptionsPagesAddDelegate = null;
        public ApplicationEvents_10_QuitEventHandler m_QuitDelegate = null;
        public ApplicationEvents_10_ReminderEventHandler m_ReminderDelegate = null;
        public ApplicationEvents_10_StartupEventHandler m_StartupDelegate = null;

        internal ApplicationEvents_10_SinkHelper()
        {
        }

        public override void AdvancedSearchComplete(Search search1)
        {
            if (this.m_AdvancedSearchCompleteDelegate != null)
            {
                this.m_AdvancedSearchCompleteDelegate(search1);
            }
        }

        public override void AdvancedSearchStopped(Search search1)
        {
            if (this.m_AdvancedSearchStoppedDelegate != null)
            {
                this.m_AdvancedSearchStoppedDelegate(search1);
            }
        }

        public override void ItemSend(object obj1, ref bool flagRef1)
        {
            if (this.m_ItemSendDelegate != null)
            {
                this.m_ItemSendDelegate(obj1, ref flagRef1);
            }
        }

        public override void MAPILogonComplete()
        {
            if (this.m_MAPILogonCompleteDelegate != null)
            {
                this.m_MAPILogonCompleteDelegate();
            }
        }

        public override void NewMail()
        {
            if (this.m_NewMailDelegate != null)
            {
                this.m_NewMailDelegate();
            }
        }

        public override void OptionsPagesAdd(PropertyPages pages1)
        {
            if (this.m_OptionsPagesAddDelegate != null)
            {
                this.m_OptionsPagesAddDelegate(pages1);
            }
        }

        public override void Quit()
        {
            if (this.m_QuitDelegate != null)
            {
                this.m_QuitDelegate();
            }
        }

        public override void Reminder(object obj1)
        {
            if (this.m_ReminderDelegate != null)
            {
                this.m_ReminderDelegate(obj1);
            }
        }

        public override void Startup()
        {
            if (this.m_StartupDelegate != null)
            {
                this.m_StartupDelegate();
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -