Skip to content

arduosoft/HubLink.Net

Repository files navigation

HubLink.CSharp

Build status Build status Downloads

HubLink Client

Hublink Client are a set of library that integrates with HubLink to introduce standard feature in your application without develope it or introduce many subsystem. All libraries can be added using nuget and are compatible with most application.

HubLink Logging

About logging we provide two alternative for .NET application:

*  Plugin for Log4net library 
*  Plugin for NLog library

To avoid unusegful references we manage two different nuget packages, so you can add just what you need.

HubLink Remote Dictionary (Key Pair storage)

This feature is useful to manage shared configuration across serve or to save remotely keypair data like session or similar. The great thing is that inside C# library it is abstracted as a standard .NET dictionary.

    var publicKey = new Guid("8C075ED0-45A7-495A-8E09-3A98FD6E8248");//Or get from configuration!
    RemoteDictionary rmd = new RemoteDictionary(publicKey);
    var value=rmd["myKey"];
    //Or
    rmd.TryGetValue("myKeyMaybeNotFound", out value);

Documentation

You can find documentation on the wiki

HubLink Server

All logging feature and other features are based on an HubLink server, so all operations are delegated to the server. To get started with HubLink you need to install it as a plain asp.net application.

You can find documentation here

Download it !

Off Topic: where you found the "download count badge"?

The download badge Downloads is part of "GitHub Analytics" one small application that give statistic about your github profile. Please try this also and let me know what you think about!

Releases

No releases published

Packages

No packages published

Languages