Skip to content

Commit 7f6f145

Browse files
committed
Add the comments for the MDAC codes back
1 parent 1214923 commit 7f6f145

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Microsoft.Data.SqlClient/src/Microsoft/Data/SqlClient/SqlInfoMessageEvent.cs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,25 +21,25 @@ public SqlErrorCollection Errors
2121
}
2222

2323
private bool ShouldSerializeErrors()
24-
{
24+
{ // MDAC 65548
2525
return (null != _exception) && (0 < _exception.Errors.Count);
2626
}
2727

2828
/// <include file='../../../../../../doc/snippets/Microsoft.Data.SqlClient/SqlInfoMessageEventArgs.xml' path='docs/members[@name="SqlInfoMessageEventArgs"]/Message/*' />
2929
public string Message
30-
{
30+
{ // MDAC 68482
3131
get { return _exception.Message; }
3232
}
3333

3434
/// <include file='../../../../../../doc/snippets/Microsoft.Data.SqlClient/SqlInfoMessageEventArgs.xml' path='docs/members[@name="SqlInfoMessageEventArgs"]/Source/*' />
3535
public string Source
36-
{
36+
{ // MDAC 68482
3737
get { return _exception.Source; }
3838
}
3939

4040
/// <include file='../../../../../../doc/snippets/Microsoft.Data.SqlClient/SqlInfoMessageEventArgs.xml' path='docs/members[@name="SqlInfoMessageEventArgs"]/ToString/*' />
4141
override public string ToString()
42-
{
42+
{ // MDAC 68482
4343
return Message;
4444
}
4545
}

0 commit comments

Comments
 (0)