• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    迪恩网络公众号

C# IgnoreList类代码示例

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

本文整理汇总了C#中IgnoreList的典型用法代码示例。如果您正苦于以下问题:C# IgnoreList类的具体用法?C# IgnoreList怎么用?C# IgnoreList使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。



IgnoreList类属于命名空间,在下文中一共展示了IgnoreList类的13个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于我们的系统推荐出更棒的C#代码示例。

示例1: AddDefaultIgnorePatterns

 public static void AddDefaultIgnorePatterns(IgnoreList ignoreList)
 {
     if (ignoreList == null)
         throw new ArgumentNullException("ignoreList");
     ignoreList.Ignore("*.intellisense.js");
     ignoreList.Ignore("*-vsdoc.js");
 }
开发者ID:paulduran,项目名称:blaze,代码行数:7,代码来源:BundleConfig.cs


示例2: AddDefaultIgnorePatterns

 public static void AddDefaultIgnorePatterns(IgnoreList ignoreList)
 {
     if (ignoreList == null)
         throw new ArgumentNullException("ignoreList");
     ignoreList.Ignore("*.intellisense.js");
     ignoreList.Ignore("*-vsdoc.js");
     ignoreList.Ignore("*.debug.js", OptimizationMode.WhenEnabled);
 }
开发者ID:GabrielCapano,项目名称:transito-de-,代码行数:8,代码来源:BundleConfig.cs


示例3: ResetIgnorePatterns

 public static void ResetIgnorePatterns(IgnoreList ignoreList)
 {
     ignoreList.Clear();
     ignoreList.Ignore("*.intellisense.js");
     ignoreList.Ignore("*-vsdoc.js");
     ignoreList.Ignore("*.debug.js", OptimizationMode.WhenEnabled);
     //ignoreList.Ignore("*.min.js", OptimizationMode.WhenDisabled);
     ignoreList.Ignore("*.min.css", OptimizationMode.WhenDisabled);
 }
开发者ID:Johnnyfly,项目名称:source20131023,代码行数:9,代码来源:BundleConfig.cs


示例4: AddDefaultIgnorePatterns

        private static void AddDefaultIgnorePatterns(IgnoreList ignoreList)
        {
            if (ignoreList == null)
                return;

            ignoreList.Ignore("*.intellisense.js");
            ignoreList.Ignore("*-vsdoc.js");
            ignoreList.Ignore("*.debug.js", OptimizationMode.WhenEnabled);
        }
开发者ID:KyorCode,项目名称:Bootcamp2013,代码行数:9,代码来源:RegisterBundles.cs


示例5: AddIgnorePaterns

        public static void AddIgnorePaterns(IgnoreList ignoreList)
        {
            if (ignoreList == null)
            {
                throw new ArgumentNullException("ignoreList");
            }

            ignoreList.Ignore("*.min.js", OptimizationMode.WhenEnabled);
        }
开发者ID:kupa25,项目名称:Temple,代码行数:9,代码来源:BundleConfig.cs


示例6: AddDefaultIgnorePatterns

        private static void AddDefaultIgnorePatterns(IgnoreList ignoreList)
        {
            if (ignoreList == null)
            {
                throw new ArgumentNullException("BundleConfig ignore list.");
            }

            ignoreList.Ignore("*.intellisense.js");
            ignoreList.Ignore("*-vsdoc.js");
        }
开发者ID:chrisjsherm,项目名称:SurplusMvc,代码行数:10,代码来源:BundleConfig.cs


示例7: SetupIgnorePatterns

        private static void SetupIgnorePatterns(IgnoreList ignoreList)
        {
            if (ignoreList == null)
                throw new ArgumentNullException("ignoreList");

            ignoreList.Clear();
            ignoreList.Ignore("*.intellisense.js");
            ignoreList.Ignore("*-vsdoc.js");
            ignoreList.Ignore("*.debug.js", OptimizationMode.WhenEnabled);
        }
开发者ID:tomsean,项目名称:EventSourcingTodo,代码行数:10,代码来源:BundleConfig.cs


示例8: buttonCustomListLoad_Click

        private void buttonCustomListLoad_Click(object sender, EventArgs e)
        {
            OpenFileDialog dialog = new OpenFileDialog();
            dialog.Title = "Eagle - Open custom list...";
            dialog.Filter = "Eagle Custom List | *.ecl";
            DialogResult result = dialog.ShowDialog(this);

            if (result != DialogResult.OK) return;

            IgnoreList list = new IgnoreList(dialog.FileName);
            string listName = list.Name;

            ListViewItem item = new ListViewItem(list.Name);
            item.SubItems.Add(list.Path);
            listView1.Items.Add(item);
        }
开发者ID:cthiange,项目名称:eagle,代码行数:16,代码来源:FormSettings.cs


示例9: buttonCustomListNew_Click

        private void buttonCustomListNew_Click(object sender, EventArgs e)
        {
            // Get name of destination file
            SaveFileDialog dialog = new SaveFileDialog();
            dialog.Title = "Eagle - Save new custom list as...";
            dialog.Filter = "Eagle Custom List | *.ecl";
            var result = dialog.ShowDialog(this);
            if (result != DialogResult.OK) return;
            string filePath = dialog.FileName;
            string fileName = Path.GetFileNameWithoutExtension(filePath);

            // List existing list names
            var existingListNames = new List<string>();
            foreach (ListViewItem item in listView1.Items)
            {
                existingListNames.Add(item.Text);
            }

            // Create unique list name
            int counter = 1;
            string suffix = "";
            while (existingListNames.Contains(fileName + suffix))
            {
                suffix = String.Format(" ({0})", counter++);
            }
            string newListName = fileName + suffix;

            // Create actual IgnoreList
            IgnoreList list = new IgnoreList();
            list.Name = newListName;
            list.SaveAs(filePath);

            // Update list view
            ListViewItem newItem = new ListViewItem(newListName);
            newItem.SubItems.Add(filePath);
            listView1.Items.Add(newItem);

            dialog.Dispose();
        }
开发者ID:cthiange,项目名称:eagle,代码行数:39,代码来源:FormSettings.cs


示例10: AddDefaultIgnorePatterns

 public static void AddDefaultIgnorePatterns(IgnoreList ignoreList)
 {
     if(ignoreList == null) {
     throw new ArgumentNullException("ignoreList");
       }
 }
开发者ID:rgullhaug,项目名称:Durandal,代码行数:6,代码来源:RambaseBundleConfig.cs


示例11: AddDefaultIgnorePatterns

 public static void AddDefaultIgnorePatterns(IgnoreList ignoreList)
 {
     ignoreList.Ignore("*.debug.js", OptimizationMode.WhenEnabled);
     ignoreList.Ignore("*.debug.css", OptimizationMode.WhenDisabled);
 }
开发者ID:nagendrareddyd,项目名称:MCPTester,代码行数:5,代码来源:BundleConfig.cs


示例12: backgroundWorker_DoWork

        /*-----------------------------------------------------------------------------------------*/
        /* Background worker                                                                       */
        /*-----------------------------------------------------------------------------------------*/
        private void backgroundWorker_DoWork(object sender, DoWorkEventArgs e)
        {
            BackgroundWorker worker = sender as BackgroundWorker;
            OxmlDocument doc = new OxmlDocument(this.GetOXML());
            Scope scope = new Scope(Properties.Settings.Default.ScopeSize);
            scope.MinimumTokenLength = Properties.Settings.Default.MinimumTokenLength;

            doc.PurgeShading();
            doc.PurgeBookmarks();

            // Load ignore list

            if (!String.IsNullOrEmpty(_ignoreListName))
            {
                IgnoreList IgnoreList = new IgnoreList(GetListPath(_ignoreListName));
                scope.IgnoreWords(IgnoreList.LoadWords(_language));
            }

            // Analyse document

            int blockCount = 0;
            float numberOfBlocks = (float)doc.GetNumberOfBlocks();
            var block = doc.GetNextOxmlBlock();

            while (block != null)
            {
                var tokens = block.GenerateOxmlTokens();
                foreach (var token in tokens)
                {
                    scope.FeedToken(token);
                }
                block = doc.GetNextOxmlBlock();

                if (worker.CancellationPending == true)
                {
                    e.Cancel = true;
                    break;
                }

                int progress = (int)(++blockCount / numberOfBlocks * 100);
                worker.ReportProgress(progress);
            }

            // Add bookmarks to document

            var conflicts = scope.GetConflicts();
            foreach (var root in conflicts.Keys)
            {
                foreach (var conflict in conflicts[root])
                {
                    foreach (var token in conflict)
                    {
                        Debug.WriteLine(String.Format("Adding bookmark {0} for root '{1}' with text '{2}' and range {3}",
                            token.BookmarkName, token.Root, token.Text, token.Range.ToString()));
                        doc.BookmarkRange(token.Range, token.BookmarkName);
                    }
                }
            }

            // Update OXML only if it is valid

            string oxml = doc.ToOxml();

            if (oxml != null)
            {
                this._conflicts = conflicts;
                this.SetOXML(doc.ToOxml());
            }
            else
            {
                MessageBox.Show("An error occured while processing this document.", "Eagle Add-In");
            }
        }
开发者ID:cthiange,项目名称:eagle,代码行数:76,代码来源:ThisAddIn.cs


示例13: IgnoreListNameChanged

 internal void IgnoreListNameChanged(string filePath, string newName)
 {
     IgnoreList ignoreList = new IgnoreList(filePath);
     ignoreList.Name = newName;
     ignoreList.Save();
 }
开发者ID:cthiange,项目名称:eagle,代码行数:6,代码来源:ThisAddIn.cs



注:本文中的IgnoreList类示例整理自Github/MSDocs等源码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
上一篇:
C# IgnoreSubmodulesMode类代码示例发布时间:2022-05-24
下一篇:
C# IgniteConfiguration类代码示例发布时间:2022-05-24
热门推荐
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap