Optional application name parameter for connection string (#1380)

* optional application name parameter for connection string
This commit is contained in:
Vasu Bhog
2022-02-03 16:00:08 -08:00
committed by GitHub
parent c092b194da
commit 8e5a23f755
4 changed files with 46 additions and 5 deletions

View File

@@ -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