<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom"><title type="text">博客园_龍機傳承</title><subtitle type="text">技术空间</subtitle><id>http://feed.cnblogs.com/blog/u/22276/rss</id><updated>2007-10-13T07:08:33Z</updated><author><name>谢里斯</name><uri>http://www.cnblogs.com/sherrys/</uri></author><generator>CNBlogs BlogServer</generator><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sherrys/"/><link rel="self" type="application/atom+xml" href="http://feed.cnblogs.com/blog/u/22276/rss"/><entry><id>http://www.cnblogs.com/sherrys/archive/2007/10/13/923211.html</id><title type="text">Content-Type 参数</title><summary type="text">Description of Data ContentTypical Filename ExtensionsMIME type/subtype      Text and Text-Related Types     HTML text data (RFC 1866)html htm text/htmlPlain text: documents; program listingstxt c c++...</summary><published>2007-10-13T07:06:00Z</published><updated>2007-10-13T07:06:00Z</updated><author><name>谢里斯</name><uri>http://www.cnblogs.com/sherrys/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sherrys/archive/2007/10/13/923211.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sherrys/archive/2007/10/13/923211.html"/></entry><entry><id>http://www.cnblogs.com/sherrys/archive/2007/08/08/848124.html</id><title type="text">Sql 2000 中行转列的查询方法</title><summary type="text">发现问题		先建立一张准备查询的报表。CREATE				TABLE [TempTable](    [Id]                INT			IDENTITY(1,1)			NOT			NULL,    -- 分为1 2 3 4 5 种类型				    [Type]                INT			NOT			NULL,    -- 纪录不同类型的操作备注			    [N...</summary><published>2007-08-08T09:58:00Z</published><updated>2007-08-08T09:58:00Z</updated><author><name>谢里斯</name><uri>http://www.cnblogs.com/sherrys/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sherrys/archive/2007/08/08/848124.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sherrys/archive/2007/08/08/848124.html"/></entry><entry><id>http://www.cnblogs.com/sherrys/archive/2007/07/05/807217.html</id><title type="text">DotNet Framework 小技巧</title><summary type="text">序列化类到Xmlusing System;using System.Collections.Generic;using System.Text;using System.Xml.Serialization;using System.IO; namespace Demo{					public					class					Metting {					private					string title;...</summary><published>2007-07-05T07:29:00Z</published><updated>2007-07-05T07:29:00Z</updated><author><name>谢里斯</name><uri>http://www.cnblogs.com/sherrys/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sherrys/archive/2007/07/05/807217.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sherrys/archive/2007/07/05/807217.html"/></entry><entry><id>http://www.cnblogs.com/sherrys/archive/2007/06/29/800828.html</id><title type="text">通过 INotifyPropertyChanged 实现观察者模式</title><summary type="text">普通观察者模式存在的问题我们都知道观察者模式的优点，可以在属性发生改变时，来监听一个实现好了的事件，这样可以帮助来异步处理许多的事情，可是在观察者模式中，一般都是针对于实体来进行封装操作，可大多数的监听过程就需要写在实体的内部了，这样大大影响了实体封装的原子性，如果想实现什么监听事件，都需要在实体层进行更改，这另人太不悦了```不过，可以通过代理的方式，让实体里面监听的时候执行这个代理就好了，代理...</summary><published>2007-06-29T15:20:00Z</published><updated>2007-06-29T15:20:00Z</updated><author><name>谢里斯</name><uri>http://www.cnblogs.com/sherrys/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sherrys/archive/2007/06/29/800828.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sherrys/archive/2007/06/29/800828.html"/></entry><entry><id>http://www.cnblogs.com/sherrys/archive/2007/06/22/792710.html</id><title type="text">使用 .NET 2.0 SecureString 类保护敏感数据</title><summary type="text">什么时候应当使用SecureString类你可能感到怀疑，既然可以使用基本的String类，为什么还有必要使用SecureString类呢？问题在于String类的设计方面。例如，如果你有一个String类的实例包含某个人的社会安全号，你就希望应用程序在处理过程中将其安全保存，以避免泄露。 问题的关键在于安全保存文本，因为String类将其以明文形式保存。查明数据的保存位置需要对.NET字符串有一...</summary><published>2007-06-22T02:17:00Z</published><updated>2007-06-22T02:17:00Z</updated><author><name>谢里斯</name><uri>http://www.cnblogs.com/sherrys/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sherrys/archive/2007/06/22/792710.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sherrys/archive/2007/06/22/792710.html"/></entry><entry><id>http://www.cnblogs.com/sherrys/archive/2007/06/17/786763.html</id><title type="text">API参数说明符前缀详解</title><summary type="text">使用MASM写Windows程序，其实就是和Windows API打交道，而一个人是不可能记住所有的API用法的，所以API参考手册是必不可少的，API的参考手册中函数原型是按匈牙利表示法表示的，下面这个表就是API原型中那些前缀的详细解释 资料来源：MicroSoft MSDN Platform SDK 参考a Array 数组b BOOL (int) 布尔(整数)by Unsigned Cha...</summary><published>2007-06-17T14:19:00Z</published><updated>2007-06-17T14:19:00Z</updated><author><name>谢里斯</name><uri>http://www.cnblogs.com/sherrys/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sherrys/archive/2007/06/17/786763.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sherrys/archive/2007/06/17/786763.html"/></entry><entry><id>http://www.cnblogs.com/sherrys/archive/2007/06/17/786761.html</id><title type="text">C#中调用Windows API的要点</title><summary type="text">一、调用格式 　　using System.Runtime.InteropServices; //引用此名称空间，简化后面的代码　　...　　//使用DllImportAttribute特性来引入api函数，注意声明的是空方法，即方法体为空。　　[DllImport("user32.dll")]　　public static extern ReturnType FunctionName(type ...</summary><published>2007-06-17T14:18:00Z</published><updated>2007-06-17T14:18:00Z</updated><author><name>谢里斯</name><uri>http://www.cnblogs.com/sherrys/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sherrys/archive/2007/06/17/786761.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sherrys/archive/2007/06/17/786761.html"/></entry><entry><id>http://www.cnblogs.com/sherrys/archive/2007/06/07/775511.html</id><title type="text">SQL 处理简单的 Xml</title><summary type="text">使用SP_XML_PREPAREDOCUMENT				来读取 Xml 文本。读取作为输入提供的 XML 文本，然后使用 MSXML 分析器 (Msxmlsql.dll) 对其进行分析，并提供分析后的文档供使用。分析后的文档对 XML 文档中的各节点（元素、属性、文本和注释等）的树状表示形式。为格式正确的 XML 文档准备内部表示形式-- 第一个参数：			-- 新创建文档的句柄。@hdoc 是一...</summary><published>2007-06-07T08:45:00Z</published><updated>2007-06-07T08:45:00Z</updated><author><name>谢里斯</name><uri>http://www.cnblogs.com/sherrys/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sherrys/archive/2007/06/07/775511.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sherrys/archive/2007/06/07/775511.html"/></entry><entry><id>http://www.cnblogs.com/sherrys/archive/2007/05/28/762609.html</id><title type="text">Special Considerations When Using Query Notifications</title><summary type="text">Special Considerations When Using Query Notifications   Applications that use query notification features need to take into account the following special considerations.  Valid QueriesQuery notificati...</summary><published>2007-05-28T07:53:00Z</published><updated>2007-05-28T07:53:00Z</updated><author><name>谢里斯</name><uri>http://www.cnblogs.com/sherrys/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sherrys/archive/2007/05/28/762609.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sherrys/archive/2007/05/28/762609.html"/></entry><entry><id>http://www.cnblogs.com/sherrys/archive/2007/05/08/739001.html</id><title type="text">利用.NET Framework使用RSS feed</title><summary type="text">链接到服务器 我们可以使用WebRequest对象链接到服务器上。WebRequest对象使你可以在Web站点上贴出请求，自从RSS通过HTTP传输后，WebRequest对象就成了链接服务器最主要的选择了。 Listing A中的代码告诉我们，任何将一个新的WebRequest对象与一个URL进行连接。 Listing A  //Create a WebRequest objectWebRequ...</summary><published>2007-05-08T06:30:00Z</published><updated>2007-05-08T06:30:00Z</updated><author><name>谢里斯</name><uri>http://www.cnblogs.com/sherrys/</uri></author><link rel="alternate" href="http://www.cnblogs.com/sherrys/archive/2007/05/08/739001.html"/><link rel="alternate" type="text/html" href="http://www.cnblogs.com/sherrys/archive/2007/05/08/739001.html"/></entry></feed>
