mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-02-10 18:22:36 -05:00
Optional application name parameter for connection string (#1380)
* optional application name parameter for connection string
This commit is contained in:
@@ -533,9 +533,14 @@ Get a connection string for the provided connection.
|
||||
public string OwnerUri { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Indicates whether the password should be return in the connection string
|
||||
/// Indicates whether the password should be return in the connection string. Default is false.
|
||||
/// </summary>
|
||||
public bool IncludePassword { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Indicates whether the application name should be return in the connection string. Default is true.
|
||||
/// </summary>
|
||||
public bool? IncludeApplicationName { get; set;}
|
||||
}
|
||||
```
|
||||
#### Response
|
||||
|
||||
Reference in New Issue
Block a user