Share via


IConnectionStore<T> Interface

Specifies the interface for the generic connection store.

Namespace:  Microsoft.SqlServer.Management
Assembly:  Microsoft.SqlServer.Management.SDK.SqlStudio (in Microsoft.SqlServer.Management.SDK.SqlStudio.dll)

Syntax

'Declaration
Public Interface IConnectionStore(Of T)
'Usage
Dim instance As IConnectionStore(Of T)
public interface IConnectionStore<T>
generic<typename T>
public interface class IConnectionStore
type IConnectionStore<'T> =  interface end
JScript does not support generic types and methods.

Type Parameters

  • T

Methods

  Name Description
Public method GetConnection() Retrieves a new connection from the store with the default property values.
Public method GetConnection(Boolean) Retrieves a new connection or duplicates the existing connection from the store.

Top