11 2011 档案
网络截包工具Wireshark
摘要:http://www.360doc.com/content/10/0310/22/959016_18292002.shtml说起Wireshark就不得不提Ethereal了,Ethereal和在Windows系统中常用的snifferpro并称网络嗅探工具双雄,不过和sniffer pro不同的是Ethereal在Linux类系统中应用更为广泛。而Wireshark软件则是Ethereal的后续版本,他是2006年在Ethereal被收购后推出的最新网络嗅探软件,在功能上比前身更加强大。官方主页: http://www.wireshark.org/ Wir...
阅读全文
Thread Synchronization 一 ManualResetEvent and AutoResetEvent
摘要:http://www.yoda.arachsys.com/csharp/threads/waithandles.shtmlWaitHandles - Auto/ManualResetEvent and MutexMonitor.Wait/Pulse isn't the only way of waiting for something to happen in one thread and telling that thread that it's happened in another. Win32 programmers have been using various ot
阅读全文
Thread safe - 深入理解lock
摘要:The lock and SyncLock Keywords1 ). Thread to start method with parameter, the method must be with object type parameter.2). The lock (C#) and SyncLock (Visual Basic) statements can be used to ensure that a block of code runs to completion without interruption by other threads. This is accomplished .
阅读全文
security protocol : SSL or TLS , HTTPS
摘要:1. How to implement SSL or TLS secure communications http://www.zdnet.com/blog/ou/how-to-implement-ssl-or-tls-secure-communications/6082. HTTP Secure (HTTPS) http://en.wikipedia.org/wiki/HTTP_Secure3. Session Initiation Protocol (SIP) http://en.wikipedia.org/wiki/Session_Initiation_Protocol4. SSL h.
阅读全文
C#操作Excel(创建、打开、读写、保存)几种方法的总结
摘要:C#操作Excel(创建、打开、读写、保存)几种方法的总结 在.NET开发中,不管是web程序还是桌面软件(尤其是涉及数据库操作的MIS系统等),常常需操作Excel,如导出数据到Excel,读取Excel中数据到程序中等。总结起来,其操作不外乎创建、打开、读写、保存(后退出/释放),而其操作方法,则主要有:通过ADO.NET数据连接方式、通过Excel对象模型“自动化”操作、使用中间数据格式如文本文件,XML等间接操作Excel、使用第三方控件(主要用于向Excel传输数据)等。在开始讨论之前,先把相关的一些网上资源罗列一下,其中大部分来自MSDN:MSDN: 如何使用 Visual C#
阅读全文
Sound Recording in Windows Phone 7
摘要:http://msdn.microsoft.com/en-us/magazine/gg598930.aspx
阅读全文
Control usage: (1) Windows Phone 7: Popup control
摘要:1.NET Framework Class Library for SilverlightSystem.Windows.Controls.PrimitivesPopup Classhttp://msdn.microsoft.com/en-us/library/system.windows.controls.primitives.popup(v=vs.95).aspx
阅读全文
Windows Phone Performance 系列网址集合
摘要:Translate this pageMicrosoft® TranslatorCheck out this page in {0} translated from {1}translated fromOriginal:Translated:Automatic translation powered by Microsoft® TranslatorStart translatingStop translatingCloseClose and show original pageSelect 1. Performance of Windows Phone 7 Applicat
阅读全文
每日总结5:
摘要:1. Call path1). VOIP call: MaxMobile =>VOIP = ==================>(net work)SIPService => LyncProxy => Lync Server => Lync Client2). (SIP call) Cell call: MaxMobile =>PSTN(Chunk call) =>运营商=> SIP Gateway(Net Work)=>SIPService2. What is pstn?http://zhidao.eepw.com.cn/ask/que
阅读全文
Pascal Interpreter for WP7
摘要:Pascal Interpreter for WP7http://www.windowsphone.com/en-US/apps/824e28f0-9e6e-e011-81d2-78e7d1fa76f8interpreter A program that executes instructions written in a high-level language. There are two ways to run programs written in a high-level language. The most common is to compile the program; the.
阅读全文
编程基础-字符篇-(3)
摘要:UTF8是一种储存和传送的格式。 UTF8是以8bits即1Bytes为编码的最基本单位,也可以基于16bits和32bits的形式,分别称为UTF16和UTF32,但目前使用不多,而UTF8则被广泛应用在文件储存和网络传输中。 编码原理 先看这个模板: UCS-4 range (hex.) UTF-8octet sequence (binary)0000 0000-0000 007F 0xxxxxxx0000 0080-0000 07FF 110xxxxx 10xxxxxx0000 0800-0000 FFFF 1110xxxx 10xxxxxx 10xxxxxx 0001 0000-00.
阅读全文
编程基础-字符篇-(2)
摘要:UTF-8是Unicode的一种实现方式,也就是它的字节结构有特殊要求,所以我们说一个汉字的范围是0X4E00到0x9FA5,是指unicode值,至于放在utf-8的编码里去就是由三个字节来组织,所以可以看出unicode是给出一个字符的范围,定义了这个字是码值是多少,至于具体的实现方式可以有多种多样来实现。note: UTF-8编码方式保存,采用0xEF,0xBB,0xBF共三个字节作为UTF-8编码标志。--UTF-8是一种变长字节编码方式。对于某一个字符的UTF-8编码,如果只有一个字节则其最高二进制位为0;如果是多字节,其第一个字节从最高位开始,连续的二进制位值为1的个数决定了其编.
阅读全文
编程基础-字符篇-(1)
摘要:Byte order markByte order markFrom Wikipedia, the free encyclopedia Jump to: navigation, searchThe byte order mark (BOM) is a Unicode character used to signal the endianness (byte order) of a text file or stream. Its code point is U+FEFF. BOM use is optional, and, if used, should appear at ...
阅读全文
每日总结一:
摘要:1. Delgeage method niming()method. The paramether will be compile with the method.2. Delal the xml with namespace3. Serize xml and deserize.xml反序列化时,如何生成与之对应的类文件http://www.ziyuan3.com/webpro/article/935.aspx4. Soap message struct.5. how the server envent is update in client (httppushnotification an.
阅读全文
【xml]: Read XML with Namespace resolution using XLinq.XElement
摘要:http://www.codeproject.com/KB/linq/xelementns.aspxstringmyxml=@"<root><onexmlns:a='http://rediff.com'><a:oneonesequenceId='11'xmlns:b='http://yahoo.com'><b:id>1</b:id><b:name></b:name></a:oneone><a:twotwoxmlns:b='htt
阅读全文
Windows Phone 7 网络编程之使用Socket(芒果更新)
摘要:http://5dblog.me/Article/68.aspx
阅读全文
Windows Phone 7 学习网址总结
摘要:1.Windows Phone Development QuickStartshttp://create.msdn.com/en-US/education/quickstarts2.MSDN webcast《Silverlight for Windows Phone开发》系列视频http://www.cnblogs.com/procoder/archive/2010/12/06/Silverlight-for-Windows-Phone-Webcasts.html3. 系列课程 >Silverlight for Windows Phone 开发系列课程 http://www.micros
阅读全文
深入理解windows Phone 7 运行模式
摘要:Execution Model Overview for Windows Phone Windows Phone September 23, 2011The Windows Phone execution model governs the lifecycle of applications running on a Windows Phone, from when the application is launched until it is terminated. The execution model is designed to provide end users with a f..
阅读全文
浙公网安备 33010602011771号