https://github.com/labelzoom/labelzoom-moca-client-dotnet
MOCA client for .NET
https://github.com/labelzoom/labelzoom-moca-client-dotnet
blue-yonder blueyonder jda moca redprairie
Last synced: 6 months ago
JSON representation
MOCA client for .NET
- Host: GitHub
- URL: https://github.com/labelzoom/labelzoom-moca-client-dotnet
- Owner: labelzoom
- License: bsd-3-clause
- Created: 2024-01-14T18:10:27.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2025-11-24T04:15:19.000Z (8 months ago)
- Last Synced: 2025-12-05T07:46:13.634Z (8 months ago)
- Topics: blue-yonder, blueyonder, jda, moca, redprairie
- Language: C#
- Homepage:
- Size: 174 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README

# labelzoom-moca-client-dotnet
[](https://github.com/labelzoom/labelzoom-moca-client-dotnet/actions?query=branch%3Amain)
[](https://github.com/labelzoom/labelzoom-moca-client-dotnet/releases)
[](https://codecov.io/gh/labelzoom/labelzoom-moca-client-dotnet)
MOCA client for .NET, sponsored by [LabelZoom](https://www.labelzoom.net).
## How To Use
See [tests](src/LabelZoom.MocaClient.Tests) for more examples.
```csharp
using (MocaConnection conn = new HttpMocaConnection(url))
{
await conn.Login(user, password);
MocaResponse res = await conn.Execute("publish data where message = 'Hello World!'");
using (DataTable dt = res.ResponseData)
{
Console.WriteLine($"Message: {dt.Rows[0].Field("message")}")
}
}
```