摘要:
Xml操作辅助类主要包括两大操作,Xml的序列化与反序列化。代码如下:namespace Tmac.Utilities{ /// <summary> /// Xml操作类 /// </summary> public class XmlUtil { /// <summary> /// 序列化对象为xml(或字节流) /// </summary> /// <param name="obj"></param> /// <returns></returns> public static. 阅读全文
摘要:
该缓存类与是基于企业库的caching组件的。公开有两个方法,分别是写缓存和读缓存。代码如下:namespace Tmac.Utilities{ /// <summary> /// 缓存辅助类 /// </summary> public class CacheUtil { private static ICacheManager cacheManager = CacheFactory.GetCacheManager(); private static string filePath = AppConfigUtil.FilePath;... 阅读全文
摘要:
首先创建配置文件,代码如下:View Code <exceptionHandling> <exceptionPolicies> <add name="Default Policy"> <exceptionTypes> <add name="All Exceptions" type="System.Exception, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" ... 阅读全文
摘要:
这个日志类是基于企业库来封装的,首先贴上配置文件的代码。View Code <?xml version="1.0" encoding="utf-8"?><configuration> <configSections> <section name="loggingConfiguration" type="Microsoft.Practices.EnterpriseLibrary.Logging.Configuration.LoggingSettings, Microsoft.Pract 阅读全文
摘要:
配置文件的操作主要有获取根目录和获取配置key的值value,下面是总结的配置文件操作类AppConfigUtil的代码。namespace Tmac.Utilities{ /// <summary> /// 配置文件操作类 /// </summary> public class AppConfigUtil { /// <summary> /// get base directory /// </summary> public static string baseDirectory = AppDomain... 阅读全文