36 references to ParsingErrorState
System.Data (36)
fx\src\data\System\Data\SqlClient\SqlInternalConnectionTds.cs (11)
1206throw SQL.ParsingError(ParsingErrorState.FedAuthNotAcknowledged); 1210throw SQL.ParsingError(ParsingErrorState.FedAuthInfoNotReceived); 2496throw SQL.ParsingErrorFeatureId(ParsingErrorState.UnrequestedFeatureAckReceived, featureId); 2536throw SQL.ParsingErrorFeatureId(ParsingErrorState.UnrequestedFeatureAckReceived, featureId); 2547throw SQL.ParsingError(ParsingErrorState.FedAuthFeatureAckContainsExtraData); 2554throw SQL.ParsingErrorLibraryType(ParsingErrorState.FedAuthFeatureAckUnknownLibraryType, (int)_fedAuthFeatureExtensionData.Value.libraryType); 2588throw SQL.ParsingError(ParsingErrorState.TceUnknownVersion); 2594throw SQL.ParsingErrorValue(ParsingErrorState.TceInvalidVersion, supportedTceVersion); 2616throw SQL.ParsingError(ParsingErrorState.CorruptedTdsStream); 2633throw SQL.ParsingError(ParsingErrorState.CorruptedTdsStream); 2650throw SQL.ParsingErrorFeatureId(ParsingErrorState.UnknownFeatureAck, featureId);
fx\src\data\System\Data\SqlClient\SqlUtil.cs (9)
508static internal Exception ParsingError(ParsingErrorState state) { 511static internal Exception ParsingError(ParsingErrorState state, Exception innerException) { 514static internal Exception ParsingErrorValue(ParsingErrorState state, int value) { 517static internal Exception ParsingErrorOffset(ParsingErrorState state, int offset) { 520static internal Exception ParsingErrorFeatureId(ParsingErrorState state, int featureId) { 523static internal Exception ParsingErrorToken(ParsingErrorState state, int token) { 526static internal Exception ParsingErrorLength(ParsingErrorState state, int length) { 529static internal Exception ParsingErrorStatus(ParsingErrorState state, int status) { 532static internal Exception ParsingErrorLibraryType(ParsingErrorState state, int libraryType) {
fx\src\data\System\Data\SqlClient\TdsParser.cs (14)
894throw SQL.ParsingError(ParsingErrorState.CorruptedTdsStream); 1069throw SQL.ParsingErrorValue(ParsingErrorState.FedAuthRequiredPreLoginResponseInvalidValue, (int)payload[payloadOffset]); 1875throw SQL.ParsingErrorToken(ParsingErrorState.InvalidTdsTokenReceived, token); // MDAC 82443 2925throw SQL.ParsingErrorLength(ParsingErrorState.SessionStateLengthTooShort, length); 2939throw SQL.ParsingErrorStatus(ParsingErrorState.SessionStateInvalidStatus, status); 3140throw SQL.ParsingErrorLength(ParsingErrorState.FedAuthInfoLengthTooShortForCountOfInfoIds, tokenLen); 3147throw SQL.ParsingError(ParsingErrorState.FedAuthInfoFailedToReadCountOfInfoIds); 3167throw SQL.ParsingError(ParsingErrorState.FedAuthInfoFailedToReadTokenStream); 3200throw SQL.ParsingErrorOffset(ParsingErrorState.FedAuthInfoInvalidOffset, unchecked((int)dataOffset)); 3210throw SQL.ParsingError(ParsingErrorState.FedAuthInfoFailedToReadData, e); 3214throw SQL.ParsingError(ParsingErrorState.FedAuthInfoDataNotUnicode, e); 3239throw SQL.ParsingErrorLength(ParsingErrorState.FedAuthInfoLengthTooShortForData, tokenLen); 3247throw SQL.ParsingError(ParsingErrorState.FedAuthInfoDoesNotContainStsurlAndSpn); 3588throw SQL.ParsingErrorValue(ParsingErrorState.TceInvalidOrdinalIntoCipherInfoTable, index);
fx\src\data\System\Data\SqlClient\TdsParserStateObject.cs (2)
1041throw SQL.ParsingError(ParsingErrorState.CorruptedTdsStream); 2440throw SQL.ParsingError(ParsingErrorState.ProcessSniPacketFailed);