5 references to KeywordsCount
System.Data (5)
fx\src\data\System\Data\SqlClient\SqlConnectionString.cs (2)
636
hash = new Hashtable(SqlConnectionStringBuilder.
KeywordsCount
+ SynonymCount);
697
Debug.Assert(SqlConnectionStringBuilder.
KeywordsCount
+ SynonymCount == hash.Count, "incorrect initial ParseSynonyms size");
fx\src\data\System\Data\SqlClient\SqlConnectionStringBuilder.cs (3)
136
string[] validKeywords = new string[
KeywordsCount
];
178
Dictionary<string, Keywords> hash = new Dictionary<string, Keywords>(
KeywordsCount
+ SqlConnectionString.SynonymCount, StringComparer.OrdinalIgnoreCase);
240
Debug.Assert((
KeywordsCount
+ SqlConnectionString.SynonymCount) == hash.Count, "initial expected size is incorrect");