IVsDataConnectionManager.IsManaging Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
IsManaging(IVsDataConnection) |
Indicates whether the connection manager is managing the specified data connection. |
IsManaging(Guid, String, Boolean) |
Indicates whether the connection manager is managing the data connection specified by the provider, the connection string, and the encrypted connection string. |
IsManaging(IVsDataConnection)
Indicates whether the connection manager is managing the specified data connection.
public:
bool IsManaging(Microsoft::VisualStudio::Data::Services::IVsDataConnection ^ connection);
public bool IsManaging (Microsoft.VisualStudio.Data.Services.IVsDataConnection connection);
abstract member IsManaging : Microsoft.VisualStudio.Data.Services.IVsDataConnection -> bool
Public Function IsManaging (connection As IVsDataConnection) As Boolean
Parameters
- connection
- IVsDataConnection
The data connection object.
Returns
true if the connection manager is managing the specified data connection; otherwise, false.
Applies to
IsManaging(Guid, String, Boolean)
Indicates whether the connection manager is managing the data connection specified by the provider, the connection string, and the encrypted connection string.
public:
bool IsManaging(Guid provider, System::String ^ connectionString, bool encryptedString);
public bool IsManaging (Guid provider, string connectionString, bool encryptedString);
abstract member IsManaging : Guid * string * bool -> bool
Public Function IsManaging (provider As Guid, connectionString As String, encryptedString As Boolean) As Boolean
Parameters
- provider
- Guid
The GUID of the DDEX provider.
- connectionString
- String
The connection string in unencrypted or encrypted form.
- encryptedString
- Boolean
A Boolean value indicating whether the connection string is encrypted (true) or unencrypted (false).
Returns
true if the connection manager is managing the specified data connection; otherwise, false.