/xmpp

An XMPP library written for .Net in C#.

Primary LanguageC#

Ubiety XMPP Library

Ubiety is an extensible XMPP library written in C# to be easy and powerful.

Build status

Example

using Ubiety;
using Ubiety.Common;

public class Test {
    public static void Main() {
        Xmpp ubiety = new Xmpp();
        ubiety.Settings.ID = new JID("test@ubiety.ca");
        ubiety.Settings.Password = "test";
        
        ubiety.Connect();
    }
}

Support