System.Data.SqlClient.SqlException.SqlException C# (CSharp) Method

SqlException() private method

private SqlException ( string message, SqlErrorCollection errorCollection, Exception innerException, System.Guid conId ) : System.Collections
message string
errorCollection SqlErrorCollection
innerException System.Exception
conId System.Guid
return System.Collections
        private SqlException(string message, SqlErrorCollection errorCollection, Exception innerException, Guid conId) : base(message, innerException)
        {
            HResult = SqlExceptionHResult;
            _errors = errorCollection;
            _clientConnectionId = conId;
        }

Same methods

SqlException::SqlException ( SerializationInfo si, StreamingContext sc ) : System.Collections