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
/// <param name="socketError">the SocketError that resulted from the write - which could be Success (no error at all)</param>
1032
1032
/// <param name="bytesTransferred">this indicates the number of bytes that were transferred in the write</param>
1033
1033
/// <returns>the number of bytes transferred if successful, -1 otherwise</returns>
1034
1034
/// <exception cref="NetMQException">If the socketError is not Success then it must be a valid recoverable error or the number of bytes transferred must be zero.</exception>
1035
1035
/// <remarks>
1036
1036
/// If socketError is SocketError.Success and bytesTransferred is > 0, then this returns bytesTransferred.
1037
-
/// If bytes is zero, or the socketError is one of NetworkDown, NetworkReset, HostUn, Connection Aborted, TimedOut, or ConnectionReset, - then -1 is returned.
1037
+
/// If bytes is zero, or the socketError is one of NetworkDown, NetworkReset, HostUn, Connection Aborted, TimedOut, ConnectionReset, AccessDenied, or Shutdown, - then -1 is returned.
/// <exception cref="NetMQException">If the socketError is not Success then it must be a valid recoverable error or the number of bytes transferred must be zero.</exception>
1075
1075
/// <remarks>
1076
1076
/// If socketError is SocketError.Success and bytesTransferred is > 0, then this returns bytesTransferred.
1077
-
/// If bytes is zero, or the socketError is one of NetworkDown, NetworkReset, HostUn, Connection Aborted, TimedOut, or ConnectionReset, - then -1 is returned.
1077
+
/// If bytes is zero, or the socketError is one of NetworkDown, NetworkReset, HostUn, Connection Aborted, TimedOut, ConnectionReset, AccessDenied, or Shutdown, - then -1 is returned.
0 commit comments