18 references to ActiveDirectoryIntegrated
System.Data (18)
fx\src\data\System\Data\Common\DbConnectionStringCommon.cs (3)
610result = SqlAuthenticationMethod.ActiveDirectoryIntegrated; 687|| value == SqlAuthenticationMethod.ActiveDirectoryIntegrated 702case SqlAuthenticationMethod.ActiveDirectoryIntegrated:
fx\src\data\System\Data\SqlClient\SqlConnection.cs (3)
476return opt != null ? opt.Authentication == SqlAuthenticationMethod.ActiveDirectoryIntegrated : false; 2047if (connectionOptions.IntegratedSecurity || connectionOptions.Authentication == SqlAuthenticationMethod.ActiveDirectoryIntegrated) { 2103if (connectionOptions.IntegratedSecurity || connectionOptions.Authentication == SqlAuthenticationMethod.ActiveDirectoryIntegrated) {
fx\src\data\System\Data\SqlClient\SqlConnectionFactory.cs (2)
68if (opt.IntegratedSecurity || opt.Authentication == SqlAuthenticationMethod.ActiveDirectoryIntegrated) { 172opt.IntegratedSecurity || opt.Authentication == SqlAuthenticationMethod.ActiveDirectoryIntegrated,
fx\src\data\System\Data\SqlClient\SqlConnectionString.cs (1)
471if (Authentication == SqlClient.SqlAuthenticationMethod.ActiveDirectoryIntegrated && (HasUserIdKeyword || HasPasswordKeyword)) {
fx\src\data\System\Data\SqlClient\SqlInternalConnectionTds.cs (5)
1306|| (ConnectionOptions.Authentication == SqlAuthenticationMethod.ActiveDirectoryIntegrated && !_fedAuthRequired); 1326|| (ConnectionOptions.Authentication == SqlAuthenticationMethod.ActiveDirectoryIntegrated && _fedAuthRequired)) { 1670connectionOptions.Authentication == SqlAuthenticationMethod.ActiveDirectoryIntegrated || 2204|| (ConnectionOptions.Authentication == SqlAuthenticationMethod.ActiveDirectoryIntegrated && _fedAuthRequired), 2390case SqlAuthenticationMethod.ActiveDirectoryIntegrated:
fx\src\data\System\Data\SqlClient\TdsParser.cs (4)
427if (integratedSecurity || authType == SqlAuthenticationMethod.ActiveDirectoryIntegrated) { 561if (authType == SqlAuthenticationMethod.ActiveDirectoryPassword || (authType == SqlAuthenticationMethod.ActiveDirectoryIntegrated && _connHandler._fedAuthRequired)) { 7036case SqlAuthenticationMethod.ActiveDirectoryIntegrated: 7628Debug.Assert(authentication == SqlAuthenticationMethod.ActiveDirectoryIntegrated || authentication == SqlAuthenticationMethod.ActiveDirectoryPassword);