Introduction

ScriptLinkStandard is a class library designed to help organizations that use myAvatar by Netsmart Technologies, Inc. get up and running quickly with ScriptLink.

Get Started

Looking to get started with ScriptLinkStandard? We will be making ScriptLinkStandard available through NuGet for easy inclusion in your new and existing ScriptLink projects.

Compatibility

ScriptLinkStandard is compatible with projects based on .NET Framework 4.6.1 and later. Learn more.

NuGet

  1. Right-click on the solution and select Manage NuGet Packages for Solution…
  2. Enter ScriptLinkStandard in the search box. (Check Include prerelease to check to get the latest prerelease version.)
  3. Select ScriptLinkStandard from the search results.
  4. Check the boxes next to each of your projects (Web and Unit Test) and select Install.
  5. Once installed you may close the NuGet - Solution page or search for additional packages.
  6. You can now reference the ScriptLinkStandard library throughout your project with @using tags.
@using ScriptLinkStandard.Helpers
@using ScriptLinkStandard.Interfaces
@using ScriptLinkStandard.Objects

Documentation

Walkthroughs

Here are some walkthroughs to help you get started with ScriptLinkStandard.

API

ScriptLinkStandard.Objects

A basic implementation of the ScriptLinkStandard library would use only the ScriptLinkStandard namespace.

@using ScriptLinkStandard.Objects

The ScriptLinkStandard.Objects namespace includes all of the objects (classes) required to create a functional ScriptLink API.

ScriptLinkStandard.Helpers

Although most of the ScriptLinkHelpers are accessible as method on the various objects, some use cases would need leverage the ScriptLinkHelpers class directly. Here are some common examples:

ScriptLinkStandard.Interfaces

The ScriptLinkStandard.Interfaces namespace is helpful when you want use a Test-Driven Development process or create your own custom objects that work with the ScriptLinkHelpers class.

Other Examples