You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Renci.SshNet/NetConfClient.cs
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
#nullable enable
2
2
usingSystem;
3
-
usingSystem.Diagnostics.CodeAnalysis;
4
3
usingSystem.Net;
5
4
usingSystem.Threading;
6
5
usingSystem.Xml;
@@ -73,7 +72,6 @@ public NetConfClient(ConnectionInfo connectionInfo)
73
72
/// <exception cref="ArgumentNullException"><paramref name="password"/> is <see langword="null"/>.</exception>
74
73
/// <exception cref="ArgumentException"><paramref name="host"/> is invalid, or <paramref name="username"/> is <see langword="null"/> or contains only whitespace characters.</exception>
75
74
/// <exception cref="ArgumentOutOfRangeException"><paramref name="port"/> is not within <see cref="IPEndPoint.MinPort"/> and <see cref="IPEndPoint.MaxPort"/>.</exception>
76
-
[SuppressMessage("Microsoft.Reliability","CA2000:DisposeObjectsBeforeLosingScope",Justification="Disposed in Dispose(bool) method.")]
/// <exception cref="ArgumentNullException"><paramref name="keyFiles"/> is <see langword="null"/>.</exception>
103
101
/// <exception cref="ArgumentException"><paramref name="host"/> is invalid, -or- <paramref name="username"/> is <see langword="null"/> or contains only whitespace characters.</exception>
104
102
/// <exception cref="ArgumentOutOfRangeException"><paramref name="port"/> is not within <see cref="IPEndPoint.MinPort"/> and <see cref="IPEndPoint.MaxPort"/>.</exception>
105
-
[SuppressMessage("Microsoft.Reliability","CA2000:DisposeObjectsBeforeLosingScope",Justification="Disposed in Dispose(bool) method.")]
Copy file name to clipboardExpand all lines: src/Renci.SshNet/ScpClient.cs
-3Lines changed: 0 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,6 @@
2
2
usingSystem;
3
3
usingSystem.Collections.Generic;
4
4
usingSystem.Diagnostics;
5
-
usingSystem.Diagnostics.CodeAnalysis;
6
5
usingSystem.Globalization;
7
6
usingSystem.IO;
8
7
usingSystem.Net;
@@ -152,7 +151,6 @@ public ScpClient(ConnectionInfo connectionInfo)
152
151
/// <exception cref="ArgumentNullException"><paramref name="password"/> is <see langword="null"/>.</exception>
153
152
/// <exception cref="ArgumentException"><paramref name="host"/> is invalid, or <paramref name="username"/> is <see langword="null"/> or contains only whitespace characters.</exception>
154
153
/// <exception cref="ArgumentOutOfRangeException"><paramref name="port"/> is not within <see cref="IPEndPoint.MinPort"/> and <see cref="IPEndPoint.MaxPort"/>.</exception>
155
-
[SuppressMessage("Microsoft.Reliability","CA2000:DisposeObjectsBeforeLosingScope",Justification="Disposed in Dispose(bool) method.")]
/// <exception cref="ArgumentNullException"><paramref name="keyFiles"/> is <see langword="null"/>.</exception>
182
180
/// <exception cref="ArgumentException"><paramref name="host"/> is invalid, -or- <paramref name="username"/> is <see langword="null"/> or contains only whitespace characters.</exception>
183
181
/// <exception cref="ArgumentOutOfRangeException"><paramref name="port"/> is not within <see cref="IPEndPoint.MinPort"/> and <see cref="IPEndPoint.MaxPort"/>.</exception>
184
-
[SuppressMessage("Microsoft.Reliability","CA2000:DisposeObjectsBeforeLosingScope",Justification="Disposed in Dispose(bool) method.")]
Copy file name to clipboardExpand all lines: src/Renci.SshNet/SftpClient.cs
-5Lines changed: 0 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,6 @@
3
3
usingSystem.Buffers;
4
4
usingSystem.Collections.Generic;
5
5
usingSystem.Diagnostics;
6
-
usingSystem.Diagnostics.CodeAnalysis;
7
6
usingSystem.Globalization;
8
7
usingSystem.IO;
9
8
usingSystem.Linq;
@@ -202,7 +201,6 @@ public SftpClient(ConnectionInfo connectionInfo)
202
201
/// <exception cref="ArgumentNullException"><paramref name="password"/> is <see langword="null"/>.</exception>
203
202
/// <exception cref="ArgumentException"><paramref name="host"/> is invalid. <para>-or-</para> <paramref name="username"/> is <see langword="null"/> or contains only whitespace characters.</exception>
204
203
/// <exception cref="ArgumentOutOfRangeException"><paramref name="port"/> is not within <see cref="IPEndPoint.MinPort"/> and <see cref="IPEndPoint.MaxPort"/>.</exception>
205
-
[SuppressMessage("Microsoft.Reliability","CA2000:DisposeObjectsBeforeLosingScope",Justification="Disposed in Dispose(bool) method.")]
/// <exception cref="ArgumentNullException"><paramref name="keyFiles"/> is <see langword="null"/>.</exception>
232
230
/// <exception cref="ArgumentException"><paramref name="host"/> is invalid. <para>-or-</para> <paramref name="username"/> is <see langword="null"/> or contains only whitespace characters.</exception>
233
231
/// <exception cref="ArgumentOutOfRangeException"><paramref name="port"/> is not within <see cref="IPEndPoint.MinPort"/> and <see cref="IPEndPoint.MaxPort"/>.</exception>
234
-
[SuppressMessage("Microsoft.Reliability","CA2000:DisposeObjectsBeforeLosingScope",Justification="Disposed in Dispose(bool) method.")]
Copy file name to clipboardExpand all lines: src/Renci.SshNet/SshClient.cs
-4Lines changed: 0 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,6 @@
1
1
#nullable enable
2
2
usingSystem;
3
3
usingSystem.Collections.Generic;
4
-
usingSystem.Diagnostics.CodeAnalysis;
5
4
usingSystem.IO;
6
5
usingSystem.Net;
7
6
usingSystem.Text;
@@ -58,9 +57,7 @@ public SshClient(ConnectionInfo connectionInfo)
58
57
/// <exception cref="ArgumentException"><paramref name="host"/> is invalid, or <paramref name="username"/> is <see langword="null"/> or contains only whitespace characters.</exception>
59
58
/// <exception cref="ArgumentOutOfRangeException"><paramref name="port"/> is not within <see cref="IPEndPoint.MinPort"/> and <see cref="IPEndPoint.MaxPort"/>.</exception>
/// <exception cref="ArgumentNullException"><paramref name="keyFiles"/> is <see langword="null"/>.</exception>
88
85
/// <exception cref="ArgumentException"><paramref name="host"/> is invalid, -or- <paramref name="username"/> is <see langword="null"/> or contains only whitespace characters.</exception>
89
86
/// <exception cref="ArgumentOutOfRangeException"><paramref name="port"/> is not within <see cref="IPEndPoint.MinPort"/> and <see cref="IPEndPoint.MaxPort"/>.</exception>
90
-
[SuppressMessage("Microsoft.Reliability","CA2000:DisposeObjectsBeforeLosingScope",Justification="Disposed in Dispose(bool) method.")]
0 commit comments