RarelySimple.AvatarScriptLink
1.1.10
dotnet add package RarelySimple.AvatarScriptLink --version 1.1.10
NuGet\Install-Package RarelySimple.AvatarScriptLink -Version 1.1.10
<PackageReference Include="RarelySimple.AvatarScriptLink" Version="1.1.10" />
paket add RarelySimple.AvatarScriptLink --version 1.1.10
#r "nuget: RarelySimple.AvatarScriptLink, 1.1.10"
// Install RarelySimple.AvatarScriptLink as a Cake Addin
#addin nuget:?package=RarelySimple.AvatarScriptLink&version=1.1.10
// Install RarelySimple.AvatarScriptLink as a Cake Tool
#tool nuget:?package=RarelySimple.AvatarScriptLink&version=1.1.10
AvatarScriptLink.NET
Essentially, AvatarScriptLink.NET is a framework for managing and manipulating myAvatar ScriptLink OptionObjects. What it does is accelerate the development of clean and stable myAvatar ScriptLink-compatible APIs.
Example
Most ScriptLink-compatible APIs are built with a local version of the NTST.ScriptLinkService.Objects library. Here's what a "Hello, World!" response might look like in this scenario.
[WebMethod]
public OptionObject RunScript(OptionObject optionObject, string parameter)
{
OptionObject returnOptionObject = new OptionObject();
returnOptionObject.ErrorCode = 3;
returnOptionObject.ErrorMesg = "Hello, World!";
returnOptionObject.EntityID = optionObject.EntityID;
returnOptionObject.EpisodeNumber = optionObject.EpisodeNumber;
returnOptionObject.Facility = optionObject.Facility;
returnOptionObject.OptionId = optionObject.OptionId;
returnOptionObject.OptionStaffId = optionObject.OptionStaffId;
returnOptionObject.OptionUserId = optionObject.OptionUserId;
returnOptionObject.SystemCode = optionObject.SystemCode;
return returnOptionObject;
}
With AvatarScriptLink.NET, this same code can be simplified to:
[WebMethod]
public OptionObject RunScript(OptionObject optionObject, string parameter)
{
return optionObject.ToReturnOptionObject(ErrorCode.Informational, "Hello, World!");
}
Likewise, to bring this same API up to the latest OptionObject version doesn't require accounting for the new properties. Just update the OptionObject version and import the new/updated WSDL into myAvatar.
[WebMethod]
public OptionObject2015 RunScript(OptionObject2015 optionObject, string parameter)
{
return optionObject.ToReturnOptionObject(ErrorCode.Informational, "Hello, World!");
}
Check out the documentation to learn more.
Licensing
AvatarScriptLink.NET is open source under the MIT License and free for commercial use.
Product | Versions |
---|---|
.NET | net5.0 net5.0-windows net6.0 net6.0-android net6.0-ios net6.0-maccatalyst net6.0-macos net6.0-tvos net6.0-windows net7.0 net7.0-android net7.0-ios net7.0-maccatalyst net7.0-macos net7.0-tvos net7.0-windows |
.NET Core | netcoreapp2.0 netcoreapp2.1 netcoreapp2.2 netcoreapp3.0 netcoreapp3.1 |
.NET Standard | netstandard2.0 netstandard2.1 |
.NET Framework | net461 net462 net463 net47 net471 net472 net48 net481 |
MonoAndroid | monoandroid |
MonoMac | monomac |
MonoTouch | monotouch |
Tizen | tizen40 tizen60 |
Xamarin.iOS | xamarinios |
Xamarin.Mac | xamarinmac |
Xamarin.TVOS | xamarintvos |
Xamarin.WatchOS | xamarinwatchos |
-
.NETFramework 4.6.1
- Newtonsoft.Json (>= 13.0.1)
-
.NETStandard 2.0
- Newtonsoft.Json (>= 13.0.1)
NuGet packages
This package is not used by any NuGet packages.
GitHub repositories
This package is not used by any popular GitHub repositories.