.NET的XMPP协议包 agsXMPP

码农软件 · 软件分类 · 网络工具包 · 2019-03-02 16:27:20

软件介绍

agsXMPP致力于创建一个轻量、快速的跨平台类库,用于XMPP协议。

通过下面的三项技术,agsXMPP达到了这个目标。

  1. 异步套接字
  2. 与工厂模式结合的快速XML解析器
  3. 自有的轻量级XML Dom,作为所有agsXMPP协议类的基础

示例代码:

XmppClientConnection xmpp = new XmppClientConnection("jabber.org");
xmpp.Open("myusername", "mysecret");
xmpp.OnLogin += delegate(object o) {
      xmpp.Send(new Message("test@jabber.org", MessageType.chat, "Hello, how are you?"));
};

本文地址:https://codercto.com/soft/d/474.html

Algorithm Design

Algorithm Design

Jon Kleinberg、Éva Tardos / Addison-Wesley / 2005-3-26 / USD 144.20

Algorithm Design introduces algorithms by looking at the real-world problems that motivate them. The book teaches students a range of design and analysis techniques for problems that arise in compu......一起来看看 《Algorithm Design》 这本书的介绍吧!

RGB转16进制工具
RGB转16进制工具

RGB HEX 互转工具

HEX HSV 转换工具
HEX HSV 转换工具

HEX HSV 互换工具