Skip to content

UnixDomainSocketEndPoint constructor exceptions #3990

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Mar 18, 2020
Merged
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
5 changes: 5 additions & 0 deletions xml/System.Net.Sockets/UnixDomainSocketEndPoint.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@
<param name="path">The path to connect a unix domain socket over.</param>
<summary>Initializes a new instance of the <see cref="T:System.Net.Sockets.UnixDomainSocketEndPoint" /> with the file path to connect a unix domain socket over.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="path" /> is <see langword="null" />.</exception>
<exception cref="T:System.ArgumentOutOfRangeException">
<paramref name="path" /> is of an invalid length for use with domain sockets on this platform. The length must be between 1 and the allowed native path length.</exception>
<exception cref="T:System.PlatformNotSupportedException">The current OS does not support Unix Domain Sockets.</exception>
</Docs>
</Member>
</Members>
Expand Down