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