mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-15 17:23:32 -05:00
* Created New ManagedBatchParser project in .NetStandard * Addressing PR Comments * Resolve 'No Repository' warning. * Move batch parser tests to integrations test project * Fix SLN file
20 lines
646 B
C#
20 lines
646 B
C#
//
|
|
// Copyright (c) Microsoft. All rights reserved.
|
|
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
|
//
|
|
|
|
using System;
|
|
|
|
namespace Microsoft.SqlTools.ServiceLayer.Connection.ReliableConnection
|
|
{
|
|
/// <summary>
|
|
/// This interface controls the lifetime of settings created as part of the
|
|
/// top-of-stack API. Changes made to this context's AmbientData instance will
|
|
/// flow to lower in the stack while this object is not disposed.
|
|
/// </summary>
|
|
public interface IStackSettingsContext : IDisposable
|
|
{
|
|
AmbientSettings.AmbientData Settings { get; }
|
|
}
|
|
}
|