namespace AspClassic.Scripting; public interface IScopeVariable { bool HasValue { get; } bool TryGetValue(out dynamic value); void SetValue(object value); bool DeleteValue(); }