Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion nanoFramework.System.Net/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

////////////////////////////////////////////////////////////////
// update this whenever the native assembly signature changes //
[assembly: AssemblyNativeVersion("100.2.0.11")]
[assembly: AssemblyNativeVersion("100.2.0.12")]
////////////////////////////////////////////////////////////////

// Setting ComVisible to false makes the types in this assembly not visible
Expand Down
8 changes: 8 additions & 0 deletions nanoFramework.System.Net/Sockets/Socket.cs
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,14 @@
}
}

/// <summary>
/// Gets a value that indicates whether a <see cref="Socket"/> is connected to a remote host as of the last <see cref="Send"/> or <see cref="Receive"/> operation.

Check warning on line 184 in nanoFramework.System.Net/Sockets/Socket.cs

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Ambiguous reference in cref attribute: 'Send'. Assuming 'Socket.Send(byte[])', but could have also matched other overloads including 'Socket.Send(byte[], SocketFlags)'.

See more on https://sonarcloud.io/project/issues?id=nanoframework_lib-nanoFramework.System.Net&issues=AZ1nhZkk-0BjvfN90KNl&open=AZ1nhZkk-0BjvfN90KNl&pullRequest=374

Check warning on line 184 in nanoFramework.System.Net/Sockets/Socket.cs

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Ambiguous reference in cref attribute: 'Receive'. Assuming 'Socket.Receive(byte[])', but could have also matched other overloads including 'Socket.Receive(byte[], SocketFlags)'.

See more on https://sonarcloud.io/project/issues?id=nanoframework_lib-nanoFramework.System.Net&issues=AZ1nhZkk-0BjvfN90KNm&open=AZ1nhZkk-0BjvfN90KNm&pullRequest=374
/// </summary>
/// <value>
/// <see langword="true"/> if the <see cref="Socket"/> was connected to a remote resource as of the most recent operation; otherwise, <see langword="false"/>.
/// </value>
public bool Connected => _rightEndPoint != null && m_Handle != -1;

/// <summary>
/// Gets or sets a value that specifies the amount of time after which a synchronous <see cref="Receive(Byte[])"/> call will time out.
/// </summary>
Expand Down
Loading