Skip to main content
Version: 2025

SalStringContext

Namespace: PPJ.Runtime

Assembly: PPJ.Web.50 (5.0.0.0)

Carries a SAL context object together with its string representation.

public class SalStringContext : SalString

Instances are created by the runtime for context operations. Equality compares the wrapped context objects rather than their displayed strings.

Example:

using PPJ.Runtime;

void InspectContext(SalStringContext value)
{
object context = value.Context;
string description = value.ToString();
}

Properties

Instance member Context

Object: Gets the context object retained by this value.

Implements

NameDescription
ISalTypeExposes a SAL value in the form used for database parameter binding.