4 overrides of TryGetValue
System.Data (3)
fx\src\data\System\Data\Odbc\OdbcConnectionStringbuilder.cs (1)
290public override bool TryGetValue(string keyword, out object value) {
fx\src\data\System\Data\OleDb\OledbConnectionStringbuilder.cs (1)
365public override bool TryGetValue(string keyword, out object value) {
fx\src\data\System\Data\SqlClient\SqlConnectionStringBuilder.cs (1)
1205public override bool TryGetValue(string keyword, out object value) {
System.Data.Entity (1)
System\Data\EntityClient\EntityConnectionStringBuilder.cs (1)
301public override bool TryGetValue(string keyword, out object value)
11 references to TryGetValue
System.Data (5)
fx\src\data\System\Data\Common\DbConnectionStringBuilder.cs (1)
130if (ShouldSerialize(keyword) && TryGetValue(keyword, out value)) {
fx\src\data\System\Data\Common\DbConnectionStringCommon.cs (1)
106if (builder.TryGetValue(DisplayName, out value)) {
fx\src\data\System\Data\Odbc\OdbcConnectionStringbuilder.cs (1)
297return base.TryGetValue(keyword, out value);
fx\src\data\System\Data\OleDb\OledbConnectionStringbuilder.cs (2)
94else if (!base.TryGetValue(keyword, out value)) { 372else if (!base.TryGetValue(keyword, out value)) {
System.Data.Linq (6)
SqlClient\SqlProvider.cs (6)
566if (builder.TryGetValue("Initial Catalog", out val)) { 570if (builder.TryGetValue("Database", out val)) { 574if (builder.TryGetValue("AttachDBFileName", out val)) { 588if (builder.TryGetValue("Initial Catalog", out val)) { 591if (builder.TryGetValue("Database", out val)) { 594if (builder.TryGetValue("AttachDBFileName", out val)) {