当前位置: 首页>>代码示例>>C#>>正文


C# Federation.EnableCaching方法代码示例

本文整理汇总了C#中FlexWiki.Federation.EnableCaching方法的典型用法代码示例。如果您正苦于以下问题:C# Federation.EnableCaching方法的具体用法?C# Federation.EnableCaching怎么用?C# Federation.EnableCaching使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在FlexWiki.Federation的用法示例。


在下文中一共展示了Federation.EnableCaching方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: Main

		static void Main(string[] args)
		{
			if (args.Length < 1)
			{
				Usage();
				return;
			}
			string fsPath = args[0];
			string topic = null;
			if (args.Length > 1)
				topic = args[1];
			LinkMaker lm = new LinkMaker("http://dummy");

			Federation fed = new Federation(fsPath, OutputFormat.HTML, lm);
			fed.EnableCaching();
			if (topic != null)
				Print(fed, new AbsoluteTopicName(topic));
			else
			{
				int max = 10;
				foreach (AbsoluteTopicName top in fed.DefaultContentBase.AllTopics(false))
				{
					Print(fed, top);
					if (max-- <= 0)
						break;
				}
			}
		}
开发者ID:nuxleus,项目名称:flexwiki,代码行数:28,代码来源:PrintTopic.cs

示例2: EstablishFederation

		void EstablishFederation()
		{
			if (TheFederation != null)
			{
				// If we have one, just make sure it's valid
				TheFederation.Validate();
				return;
			}

			// nope - need a new one
			string federationNamespaceMap = FederationNamespaceMapPath;
			if (federationNamespaceMap == null)
				throw new Exception("No namespace map file defined.  Please set the FederationNamespaceMapFile key in <appSettings> in web.config to point to a namespace map file.");
			string fsPath = MapPath(federationNamespaceMap);
			Federation fed = new Federation(fsPath, OutputFormat.HTML, TheLinkMaker);
			fed.EnableCaching(CacheManager); // Give the federation a cache to work with 
			SetFederation(fed);
			
			// Setup event monitoring
			SetupUpdateMonitoring();
		}
开发者ID:nuxleus,项目名称:flexwiki,代码行数:21,代码来源:BasePage.cs


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