MigratoryData.Client.DotNet
6.0.3
See the version list below for details.
dotnet add package MigratoryData.Client.DotNet --version 6.0.3
NuGet\Install-Package MigratoryData.Client.DotNet -Version 6.0.3
<PackageReference Include="MigratoryData.Client.DotNet" Version="6.0.3" />
paket add MigratoryData.Client.DotNet --version 6.0.3
#r "nuget: MigratoryData.Client.DotNet, 6.0.3"
// Install MigratoryData.Client.DotNet as a Cake Addin #addin nuget:?package=MigratoryData.Client.DotNet&version=6.0.3 // Install MigratoryData.Client.DotNet as a Cake Tool #tool nuget:?package=MigratoryData.Client.DotNet&version=6.0.3
MigratoryData Client SDK for .Net
DOCUMENTATION
Please refer to the Developer's Guide and the Reference Manual of the MigratoryData Client SDK for .Net located at:
https://migratorydata.com/docs/migratorydata-client-sdks/dotnet/getting_started/
SAMPLE
Steps for building realtime client applications using C# .NET
Prerequisites
.Net SDK
Create Project
Create a getting started project with:
dotnet new console -n getting-started-csharp-client-api
Add API library
Change to the folder of your project and add the API library with:
dotnet add package MigratoryData.Client.DotNet --version 6.0.3
Configure
Copy the below code snippet to the file Program.cs of your project.
Build & Run
Use the following command to build and run your project:
dotnet run
Play
Open the Console page of MigratoryData Cloud, connect and subscribe to the default subject to see how messages published by this client application are received in realtime. Also, publish from the Console messages on the default subject and see in the output of this client application how messages are received in realtime.
// For API documentation go to (Developer’s Guide)[https://migratorydata.com/docs/migratorydata-client-sdks/dotnet/getting_started/]
using System;
using System.Collections.Generic;
using com.migratorydata.client;
using System.Threading;
namespace example
{
class Program
{
static void Main(string[] args)
{
MigratoryDataClient client = new MigratoryDataClient();
client.SetLogListener(new LogList(), MigratoryDataLogLevel.DEBUG);
client.SetListener(new Listener());
//client.SetEncryption(true);
client.SetEntitlementToken("some-token");
client.SetServers(new string[] { "127.0.0.1:8800" });
List<string> subjects = new List<string>();
subjects.Add("/server/status");
client.Subscribe(subjects);
client.Connect();
// publish a message every 3 seconds
int count = 1;
while (count < 1000000)
{
client.Publish(new MigratoryDataMessage("/server/status", System.Text.Encoding.ASCII.GetBytes("data - " + count), "id" + count));
count++;
Thread.Sleep(3000);
}
}
class Listener : MigratoryDataListener
{
public void OnMessage(MigratoryDataMessage message)
{
System.Console.WriteLine(message.ToString());
}
public void OnStatus(string status, string info)
{
System.Console.WriteLine(status + " " + info);
}
}
class LogList : MigratoryDataLogListener
{
public void OnLog(string log, MigratoryDataLogLevel level)
{
string msg = string.Format("[{0:G}] [{1}] {2}", DateTime.Now, level, log);
Console.WriteLine(msg);
}
}
}
}
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET | net5.0 was computed. net5.0-windows was computed. net6.0 was computed. net6.0-android was computed. net6.0-ios was computed. net6.0-maccatalyst was computed. net6.0-macos was computed. net6.0-tvos was computed. net6.0-windows was computed. net7.0 was computed. net7.0-android was computed. net7.0-ios was computed. net7.0-maccatalyst was computed. net7.0-macos was computed. net7.0-tvos was computed. net7.0-windows was computed. net8.0 was computed. net8.0-android was computed. net8.0-browser was computed. net8.0-ios was computed. net8.0-maccatalyst was computed. net8.0-macos was computed. net8.0-tvos was computed. net8.0-windows was computed. |
.NET Core | netcoreapp2.0 was computed. netcoreapp2.1 was computed. netcoreapp2.2 was computed. netcoreapp3.0 was computed. netcoreapp3.1 was computed. |
.NET Standard | netstandard2.0 is compatible. netstandard2.1 was computed. |
.NET Framework | net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
MonoAndroid | monoandroid was computed. |
MonoMac | monomac was computed. |
MonoTouch | monotouch was computed. |
Tizen | tizen40 was computed. tizen60 was computed. |
Xamarin.iOS | xamarinios was computed. |
Xamarin.Mac | xamarinmac was computed. |
Xamarin.TVOS | xamarintvos was computed. |
Xamarin.WatchOS | xamarinwatchos was computed. |
-
.NETStandard 2.0
- No dependencies.
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.