Imported Upstream version 5.12.0.220

Former-commit-id: c477e03582759447177c6d4bf412cd2355aad476
This commit is contained in:
Xamarin Public Jenkins (auto-signing)
2018-04-24 09:31:23 +00:00
parent 8bd104cef2
commit 8fc30896db
1200 changed files with 29534 additions and 26161 deletions

View File

@ -47,7 +47,7 @@ using System.Text;
using System.Timers;
using System.Net.NetworkInformation;
namespace System.Net.Sockets
namespace System.Net.Sockets
{
public partial class Socket : IDisposable
{
@ -91,7 +91,14 @@ namespace System.Net.Sockets
int m_IntCleanedUp;
internal bool connect_in_progress;
#region Constructors
#if MONO_WEB_DEBUG
static int nextId;
internal readonly int ID = ++nextId;
#else
internal readonly int ID;
#endif
#region Constructors
public Socket (SocketInformation socketInformation)