• This repository has been archived on 16/Feb/2019
  • Stars
    star
    161
  • Rank 233,470 (Top 5 %)
  • Language
    C#
  • License
    GNU Lesser Genera...
  • Created about 16 years ago
  • Updated almost 6 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

An XMPP library written for .Net in C#.

Ubiety XMPP Library

NOTICE ARCHIVED - Please use Ubiety.Xmpp.Core

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

Build status NuGet version CLA assistant

Installing

Install from NuGet using: Install-Package UbietyXMPP

Example

using Ubiety;
using Ubiety.Common;

public class Test {
    public static void Main() {
        Xmpp ubiety = new Xmpp();
        ubiety.Settings.ID = new JID("[email protected]");
        ubiety.Settings.Password = "test";
        
        ubiety.Connect();
    }
}

XEPs

  • XEP-0106 JID Escaping
  • XEP-0138 Stream Compression
  • XEP-0198 Stream Management (In Progress)

Support