Skip to content

Commit 83ce593

Browse files
authored
Fix parameter description misplacement (#214)
***NO_CI***
1 parent 52f60e7 commit 83ce593

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

nanoFramework.System.Net/Sockets/NetworkStream.cs

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ public class NetworkStream : Stream
5353
// nonblocking state.
5454

5555
/// <summary>
56-
/// Creates a new instance of the System.Net.Sockets.NetworkStream class for the specified System.Net.Sockets.Socket.
56+
/// Creates a new instance of the <see cref="NetworkStream"/> class for the specified <see cref="Socket"/>.
5757
/// </summary>
58-
/// <param name="socket">The System.Net.Sockets.Socket that the System.Net.Sockets.NetworkStream will use to send and receive data.</param>
58+
/// <param name="socket">The <see cref="Socket"/> that the <see cref="NetworkStream"/> will use to send and receive data.</param>
5959
public NetworkStream(Socket socket)
6060
: this(socket, false)
6161
{
@@ -86,13 +86,13 @@ public NetworkStream(Socket socket)
8686
// socket is null.
8787

8888
/// <summary>
89-
/// Initializes a new instance of the System.Net.Sockets.NetworkStream class for the specified
90-
/// System.Net.Sockets.Socket with the specified System.Net.Sockets.Socket ownership.
89+
/// Initializes a new instance of the <see cref="NetworkStream"/> class for the specified
90+
/// <see cref="Socket"/> with the specified <see cref="Socket"/> ownership.
9191
/// </summary>
92-
/// <param name="socket">true to indicate that the System.Net.Sockets.NetworkStream will take ownership of the System.Net.Sockets.Socket;
93-
/// otherwise, false.</param>
94-
/// <param name="ownsSocket">The System.Net.Sockets.Socket that the System.Net.Sockets.NetworkStream will
92+
/// <param name="socket">The <see cref="Socket"/> that the <see cref="NetworkStream"/> will
9593
/// use to send and receive data.</param>
94+
/// <param name="ownsSocket"><see langword="true"/> to indicate that the <see cref="NetworkStream"/> will take ownership of the <see cref="Socket"/>;
95+
/// otherwise, <see langword="false"/>.</param>
9696
public NetworkStream(Socket socket, bool ownsSocket)
9797
{
9898
if (socket == null) throw new ArgumentNullException();

0 commit comments

Comments
 (0)