SalStringContext
Namespace: PPJ.Runtime
Assembly: PPJ.Web.50 (5.0.0.0)
Carries a SAL context object together with its string representation.
- C#
- VB.NET
public class SalStringContext : SalString
Public Class SalStringContext
Inherits 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
Context
Object: Gets the context object retained by this value.
Implements
| Name | Description |
|---|---|
| ISalType | Exposes a SAL value in the form used for database parameter binding. |