Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Baulig <mabaul@microsoft.com>2019-08-06 13:13:40 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2019-08-06 13:13:40 +0300
commit1c13b302255ba1e50beba126f0e2570fc756baeb (patch)
tree50b38608418ef1e407d19ad80b7ffc28d948f4eb /mcs/class/referencesource
parent7ab3811b934779c0622f6343ab2b75d64099e3d0 (diff)
`SocketAsyncEventArgs` cleanups and preparations for the real thing. (#16001)
Cleaning up the `SocketAsyncEventArgs` class and preparing it for it's eventual adaption from CoreFX. There are a few instance fields and property accessors with `internal` visibility, which the CoreFX version does not have. Replaced these with accessor methods. The `PolicyRestricted` property and it's related `SocketAsyncEventArgs (bool)` constructor is not used anywhere and the CoreFX version has a constructor with the same signature, but different semantics. In the CoreFX version, `Complete ()` does not call `DoComplete (this)` - renamed it into `Complete_internal ()` to avoid any ambiguities and help the transitioning.
Diffstat (limited to 'mcs/class/referencesource')
-rw-r--r--mcs/class/referencesource/System/net/System/Net/Sockets/Socket.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/mcs/class/referencesource/System/net/System/Net/Sockets/Socket.cs b/mcs/class/referencesource/System/net/System/Net/Sockets/Socket.cs
index 78673562a9c..8ef3b670b51 100644
--- a/mcs/class/referencesource/System/net/System/Net/Sockets/Socket.cs
+++ b/mcs/class/referencesource/System/net/System/Net/Sockets/Socket.cs
@@ -7851,7 +7851,7 @@ namespace System.Net.Sockets {
if (s_LoggingEnabled) Logging.Enter(Logging.Sockets, null, "ConnectAsync", "");
// Throw if multiple buffers specified.
- if (e.m_BufferList != null) {
+ if (e.BufferList != null) {
throw new ArgumentException(SR.GetString(SR.net_multibuffernotsupported), "BufferList");
}