public class Socket extends NetObject implements java.lang.AutoCloseable
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Net.Sockets.Socket
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
|
static java.lang.String |
assemblyShortName
Assembly name: System
|
static java.lang.String |
className
Qualified class name: System.Net.Sockets.Socket
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
Socket() |
Socket(AddressFamily addressFamily,
SocketType socketType,
ProtocolType protocolType) |
Socket(java.lang.Object instance)
Internal constructor.
|
Socket(SocketInformation socketInformation) |
Socket(SocketType socketType,
ProtocolType protocolType) |
| Modifier and Type | Method and Description |
|---|---|
Socket |
Accept() |
boolean |
AcceptAsync(SocketAsyncEventArgs e) |
IAsyncResult |
BeginAccept(AsyncCallback callback,
NetObject state) |
IAsyncResult |
BeginAccept(int receiveSize,
AsyncCallback callback,
NetObject state) |
IAsyncResult |
BeginAccept(Socket acceptSocket,
int receiveSize,
AsyncCallback callback,
NetObject state) |
IAsyncResult |
BeginConnect(EndPoint remoteEP,
AsyncCallback callback,
NetObject state) |
IAsyncResult |
BeginConnect(IPAddress[] addresses,
int port,
AsyncCallback requestCallback,
NetObject state) |
IAsyncResult |
BeginConnect(IPAddress address,
int port,
AsyncCallback requestCallback,
NetObject state) |
IAsyncResult |
BeginConnect(java.lang.String host,
int port,
AsyncCallback requestCallback,
NetObject state) |
IAsyncResult |
BeginDisconnect(boolean reuseSocket,
AsyncCallback callback,
NetObject state) |
IAsyncResult |
BeginReceive(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
AsyncCallback callback,
NetObject state) |
IAsyncResult |
BeginReceive(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
JCORefOut<SocketError> errorCode,
AsyncCallback callback,
NetObject state) |
IAsyncResult |
BeginReceive(JCORefOut dupParam0,
int dupParam1,
int dupParam2,
SocketFlags dupParam3,
AsyncCallback dupParam4,
NetObject dupParam5) |
IAsyncResult |
BeginReceiveFrom(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
JCORefOut<EndPoint> remoteEP,
AsyncCallback callback,
NetObject state) |
IAsyncResult |
BeginReceiveMessageFrom(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
JCORefOut<EndPoint> remoteEP,
AsyncCallback callback,
NetObject state) |
IAsyncResult |
BeginSend(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
AsyncCallback callback,
NetObject state) |
IAsyncResult |
BeginSend(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
JCORefOut<SocketError> errorCode,
AsyncCallback callback,
NetObject state) |
IAsyncResult |
BeginSend(JCORefOut dupParam0,
int dupParam1,
int dupParam2,
SocketFlags dupParam3,
AsyncCallback dupParam4,
NetObject dupParam5) |
IAsyncResult |
BeginSendFile(java.lang.String fileName,
AsyncCallback callback,
NetObject state) |
IAsyncResult |
BeginSendFile(java.lang.String fileName,
byte[] preBuffer,
byte[] postBuffer,
TransmitFileOptions flags,
AsyncCallback callback,
NetObject state) |
IAsyncResult |
BeginSendFile(java.lang.String dupParam0,
JCORefOut dupParam1,
JCORefOut dupParam2,
TransmitFileOptions dupParam3,
AsyncCallback dupParam4,
NetObject dupParam5) |
IAsyncResult |
BeginSendTo(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
EndPoint remoteEP,
AsyncCallback callback,
NetObject state) |
IAsyncResult |
BeginSendTo(JCORefOut dupParam0,
int dupParam1,
int dupParam2,
SocketFlags dupParam3,
EndPoint dupParam4,
AsyncCallback dupParam5,
NetObject dupParam6) |
void |
Bind(EndPoint localEP) |
static void |
CancelConnectAsync(SocketAsyncEventArgs e) |
static Socket |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into Socket, a cast assert is made to check if types are compatible. |
void |
close() |
void |
Close() |
void |
Close(int timeout) |
void |
Connect(EndPoint remoteEP) |
void |
Connect(IPAddress[] addresses,
int port) |
void |
Connect(IPAddress address,
int port) |
void |
Connect(java.lang.String host,
int port) |
boolean |
ConnectAsync(SocketAsyncEventArgs e) |
static boolean |
ConnectAsync(SocketType socketType,
ProtocolType protocolType,
SocketAsyncEventArgs e) |
void |
Disconnect(boolean reuseSocket) |
boolean |
DisconnectAsync(SocketAsyncEventArgs e) |
void |
Dispose() |
SocketInformation |
DuplicateAndClose(int targetProcessId) |
Socket |
EndAccept(IAsyncResult asyncResult) |
Socket |
EndAccept(JCORefOut buffer,
IAsyncResult asyncResult) |
Socket |
EndAccept(JCORefOut buffer,
JCORefOut<java.util.concurrent.atomic.AtomicInteger> bytesTransferred,
IAsyncResult asyncResult) |
void |
EndConnect(IAsyncResult asyncResult) |
void |
EndDisconnect(IAsyncResult asyncResult) |
int |
EndReceive(IAsyncResult asyncResult) |
int |
EndReceive(IAsyncResult asyncResult,
JCORefOut<SocketError> errorCode) |
int |
EndReceiveFrom(IAsyncResult asyncResult,
JCORefOut<EndPoint> endPoint) |
int |
EndReceiveMessageFrom(IAsyncResult asyncResult,
JCORefOut<SocketFlags> socketFlags,
JCORefOut<EndPoint> endPoint,
JCORefOut<IPPacketInformation> ipPacketInformation) |
int |
EndSend(IAsyncResult asyncResult) |
int |
EndSend(IAsyncResult asyncResult,
JCORefOut<SocketError> errorCode) |
void |
EndSendFile(IAsyncResult asyncResult) |
int |
EndSendTo(IAsyncResult asyncResult) |
AddressFamily |
getAddressFamily() |
int |
getAvailable() |
boolean |
getBlocking() |
boolean |
getConnected() |
boolean |
getDontFragment() |
boolean |
getDualMode() |
boolean |
getEnableBroadcast() |
boolean |
getExclusiveAddressUse() |
boolean |
getIsBound() |
java.lang.String |
getJCOAssemblyName()
Returns the reflected Assembly name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
LingerOption |
getLingerState() |
EndPoint |
getLocalEndPoint() |
boolean |
getMulticastLoopback() |
boolean |
getNoDelay() |
static boolean |
getOSSupportsIPv4() |
static boolean |
getOSSupportsIPv6() |
ProtocolType |
getProtocolType() |
int |
getReceiveBufferSize() |
int |
getReceiveTimeout() |
EndPoint |
getRemoteEndPoint() |
int |
getSendBufferSize() |
int |
getSendTimeout() |
NetObject |
GetSocketOption(SocketOptionLevel optionLevel,
SocketOptionName optionName) |
void |
GetSocketOption(SocketOptionLevel optionLevel,
SocketOptionName optionName,
byte[] optionValue) |
byte[] |
GetSocketOption(SocketOptionLevel optionLevel,
SocketOptionName optionName,
int optionLength) |
void |
GetSocketOption(SocketOptionLevel dupParam0,
SocketOptionName dupParam1,
JCORefOut dupParam2) |
SocketType |
getSocketType() |
static boolean |
getSupportsIPv4() |
static boolean |
getSupportsIPv6() |
short |
getTtl() |
boolean |
getUseOnlyOverlappedIO() |
int |
IOControl(int ioControlCode,
byte[] optionInValue,
byte[] optionOutValue) |
int |
IOControl(int dupParam0,
JCORefOut dupParam1,
JCORefOut dupParam2) |
int |
IOControl(IOControlCode ioControlCode,
byte[] optionInValue,
byte[] optionOutValue) |
int |
IOControl(IOControlCode dupParam0,
JCORefOut dupParam1,
JCORefOut dupParam2) |
void |
Listen(int backlog) |
boolean |
Poll(int microSeconds,
SelectMode mode) |
int |
Receive(byte[] buffer) |
int |
Receive(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags) |
int |
Receive(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
JCORefOut<SocketError> errorCode) |
int |
Receive(byte[] buffer,
int size,
SocketFlags socketFlags) |
int |
Receive(byte[] buffer,
SocketFlags socketFlags) |
int |
Receive(JCORefOut dupParam0) |
int |
Receive(JCORefOut dupParam0,
int dupParam1,
int dupParam2,
SocketFlags dupParam3) |
int |
Receive(JCORefOut dupParam0,
int dupParam1,
SocketFlags dupParam2) |
int |
Receive(JCORefOut dupParam0,
SocketFlags dupParam1) |
boolean |
ReceiveAsync(SocketAsyncEventArgs e) |
int |
ReceiveFrom(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
JCORefOut<EndPoint> remoteEP) |
int |
ReceiveFrom(byte[] buffer,
int size,
SocketFlags socketFlags,
JCORefOut<EndPoint> remoteEP) |
int |
ReceiveFrom(byte[] buffer,
JCORefOut<EndPoint> remoteEP) |
int |
ReceiveFrom(byte[] buffer,
SocketFlags socketFlags,
JCORefOut<EndPoint> remoteEP) |
boolean |
ReceiveFromAsync(SocketAsyncEventArgs e) |
int |
ReceiveMessageFrom(byte[] buffer,
int offset,
int size,
JCORefOut<SocketFlags> socketFlags,
JCORefOut<EndPoint> remoteEP,
JCORefOut<IPPacketInformation> ipPacketInformation) |
boolean |
ReceiveMessageFromAsync(SocketAsyncEventArgs e) |
static void |
Select(IList checkRead,
IList checkWrite,
IList checkError,
int microSeconds) |
int |
Send(byte[] buffer) |
int |
Send(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags) |
int |
Send(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
JCORefOut<SocketError> errorCode) |
int |
Send(byte[] buffer,
int size,
SocketFlags socketFlags) |
int |
Send(byte[] buffer,
SocketFlags socketFlags) |
int |
Send(JCORefOut dupParam0) |
int |
Send(JCORefOut dupParam0,
int dupParam1,
int dupParam2,
SocketFlags dupParam3) |
int |
Send(JCORefOut dupParam0,
int dupParam1,
SocketFlags dupParam2) |
int |
Send(JCORefOut dupParam0,
SocketFlags dupParam1) |
boolean |
SendAsync(SocketAsyncEventArgs e) |
void |
SendFile(java.lang.String fileName) |
void |
SendFile(java.lang.String fileName,
byte[] preBuffer,
byte[] postBuffer,
TransmitFileOptions flags) |
void |
SendFile(java.lang.String dupParam0,
JCORefOut dupParam1,
JCORefOut dupParam2,
TransmitFileOptions dupParam3) |
boolean |
SendPacketsAsync(SocketAsyncEventArgs e) |
int |
SendTo(byte[] buffer,
EndPoint remoteEP) |
int |
SendTo(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
EndPoint remoteEP) |
int |
SendTo(byte[] buffer,
int size,
SocketFlags socketFlags,
EndPoint remoteEP) |
int |
SendTo(byte[] buffer,
SocketFlags socketFlags,
EndPoint remoteEP) |
int |
SendTo(JCORefOut dupParam0,
EndPoint dupParam1) |
int |
SendTo(JCORefOut dupParam0,
int dupParam1,
int dupParam2,
SocketFlags dupParam3,
EndPoint dupParam4) |
int |
SendTo(JCORefOut dupParam0,
int dupParam1,
SocketFlags dupParam2,
EndPoint dupParam3) |
int |
SendTo(JCORefOut dupParam0,
SocketFlags dupParam1,
EndPoint dupParam2) |
boolean |
SendToAsync(SocketAsyncEventArgs e) |
void |
setBlocking(boolean Blocking) |
void |
setDontFragment(boolean DontFragment) |
void |
setDualMode(boolean DualMode) |
void |
setEnableBroadcast(boolean EnableBroadcast) |
void |
setExclusiveAddressUse(boolean ExclusiveAddressUse) |
void |
SetIPProtectionLevel(IPProtectionLevel level) |
void |
setJCOInstance(JCObject instance) |
void |
setLingerState(LingerOption LingerState) |
void |
setMulticastLoopback(boolean MulticastLoopback) |
void |
setNoDelay(boolean NoDelay) |
void |
setReceiveBufferSize(int ReceiveBufferSize) |
void |
setReceiveTimeout(int ReceiveTimeout) |
void |
setSendBufferSize(int SendBufferSize) |
void |
setSendTimeout(int SendTimeout) |
void |
SetSocketOption(SocketOptionLevel optionLevel,
SocketOptionName optionName,
boolean optionValue) |
void |
SetSocketOption(SocketOptionLevel optionLevel,
SocketOptionName optionName,
byte[] optionValue) |
void |
SetSocketOption(SocketOptionLevel optionLevel,
SocketOptionName optionName,
int optionValue) |
void |
SetSocketOption(SocketOptionLevel dupParam0,
SocketOptionName dupParam1,
JCORefOut dupParam2) |
void |
SetSocketOption(SocketOptionLevel optionLevel,
SocketOptionName optionName,
NetObject optionValue) |
void |
setTtl(short Ttl) |
void |
setUseOnlyOverlappedIO(boolean UseOnlyOverlappedIO) |
void |
Shutdown(SocketShutdown how) |
public static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public Socket()
throws java.lang.Throwable
java.lang.Throwablepublic Socket(AddressFamily addressFamily, SocketType socketType, ProtocolType protocolType) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, IndexOutOfRangeException, SocketException, KeyNotFoundException, SecurityException, PlatformNotSupportedException, NotImplementedException, Win32Exception, SynchronizationLockException, ObjectDisposedException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionSocketExceptionKeyNotFoundExceptionSecurityExceptionPlatformNotSupportedExceptionNotImplementedExceptionWin32ExceptionSynchronizationLockExceptionObjectDisposedExceptionpublic Socket(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic Socket(SocketInformation socketInformation) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, IndexOutOfRangeException, SocketException, KeyNotFoundException, SecurityException, PlatformNotSupportedException, NotImplementedException, Win32Exception, SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionSocketExceptionKeyNotFoundExceptionSecurityExceptionPlatformNotSupportedExceptionNotImplementedExceptionWin32ExceptionSynchronizationLockExceptionpublic Socket(SocketType socketType, ProtocolType protocolType) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, IndexOutOfRangeException, SocketException, SecurityException, NullReferenceException, NotImplementedException, NotSupportedException, ObjectDisposedException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionIndexOutOfRangeExceptionSocketExceptionSecurityExceptionNullReferenceExceptionNotImplementedExceptionNotSupportedExceptionObjectDisposedExceptionpublic Socket Accept() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, IndexOutOfRangeException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SocketException, SecurityException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionIndexOutOfRangeExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSocketExceptionSecurityExceptionpublic boolean AcceptAsync(SocketAsyncEventArgs e) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, IndexOutOfRangeException, SocketException, SecurityException, NotImplementedException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionIndexOutOfRangeExceptionSocketExceptionSecurityExceptionNotImplementedExceptionpublic IAsyncResult BeginAccept(AsyncCallback callback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, FormatException, ConfigurationErrorsException, KeyNotFoundException, NotSupportedException, ConfigurationException, IndexOutOfRangeException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, SocketException, NotImplementedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, SecurityException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionFormatExceptionConfigurationErrorsExceptionKeyNotFoundExceptionNotSupportedExceptionConfigurationExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionSocketExceptionNotImplementedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionSecurityExceptionpublic IAsyncResult BeginAccept(int receiveSize, AsyncCallback callback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, IndexOutOfRangeException, SocketException, SecurityException, NotSupportedException, NotImplementedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, NullReferenceException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionIndexOutOfRangeExceptionSocketExceptionSecurityExceptionNotSupportedExceptionNotImplementedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionNullReferenceExceptionpublic IAsyncResult BeginAccept(Socket acceptSocket, int receiveSize, AsyncCallback callback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, IndexOutOfRangeException, SocketException, SecurityException, NotImplementedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, FormatException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionIndexOutOfRangeExceptionSocketExceptionSecurityExceptionNotImplementedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionFormatExceptionpublic IAsyncResult BeginConnect(EndPoint remoteEP, AsyncCallback callback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, SocketException, AccessViolationException, IndexOutOfRangeException, FormatException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionAccessViolationExceptionIndexOutOfRangeExceptionFormatExceptionpublic IAsyncResult BeginConnect(IPAddress[] addresses, int port, AsyncCallback requestCallback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, SocketException, NotImplementedException, AccessViolationException, SecurityException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionSocketExceptionNotImplementedExceptionAccessViolationExceptionSecurityExceptionpublic IAsyncResult BeginConnect(IPAddress address, int port, AsyncCallback requestCallback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, SocketException, NotImplementedException, IndexOutOfRangeException, FormatException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionSocketExceptionNotImplementedExceptionIndexOutOfRangeExceptionFormatExceptionpublic IAsyncResult BeginConnect(java.lang.String host, int port, AsyncCallback requestCallback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, SocketException, NotImplementedException, AccessViolationException, IndexOutOfRangeException, FormatException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionSocketExceptionNotImplementedExceptionAccessViolationExceptionIndexOutOfRangeExceptionFormatExceptionpublic IAsyncResult BeginDisconnect(boolean reuseSocket, AsyncCallback callback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, NotSupportedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, FormatException, SocketException, SecurityException, NullReferenceException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionNotSupportedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionFormatExceptionSocketExceptionSecurityExceptionNullReferenceExceptionpublic IAsyncResult BeginReceive(byte[] buffer, int offset, int size, SocketFlags socketFlags, AsyncCallback callback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, IndexOutOfRangeException, SecurityException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionIndexOutOfRangeExceptionSecurityExceptionSocketExceptionpublic IAsyncResult BeginReceive(byte[] buffer, int offset, int size, SocketFlags socketFlags, JCORefOut<SocketError> errorCode, AsyncCallback callback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, IndexOutOfRangeException, SecurityException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionIndexOutOfRangeExceptionSecurityExceptionpublic IAsyncResult BeginReceive(JCORefOut dupParam0, int dupParam1, int dupParam2, SocketFlags dupParam3, AsyncCallback dupParam4, NetObject dupParam5) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, IndexOutOfRangeException, SecurityException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionIndexOutOfRangeExceptionSecurityExceptionSocketExceptionpublic IAsyncResult BeginReceiveFrom(byte[] buffer, int offset, int size, SocketFlags socketFlags, JCORefOut<EndPoint> remoteEP, AsyncCallback callback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, SocketException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, SecurityException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionSecurityExceptionpublic IAsyncResult BeginReceiveMessageFrom(byte[] buffer, int offset, int size, SocketFlags socketFlags, JCORefOut<EndPoint> remoteEP, AsyncCallback callback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, SocketException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, FormatException, KeyNotFoundException, SecurityException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionFormatExceptionKeyNotFoundExceptionSecurityExceptionpublic IAsyncResult BeginSend(byte[] buffer, int offset, int size, SocketFlags socketFlags, AsyncCallback callback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, IndexOutOfRangeException, SecurityException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionIndexOutOfRangeExceptionSecurityExceptionSocketExceptionpublic IAsyncResult BeginSend(byte[] buffer, int offset, int size, SocketFlags socketFlags, JCORefOut<SocketError> errorCode, AsyncCallback callback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, IndexOutOfRangeException, SecurityException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionIndexOutOfRangeExceptionSecurityExceptionpublic IAsyncResult BeginSend(JCORefOut dupParam0, int dupParam1, int dupParam2, SocketFlags dupParam3, AsyncCallback dupParam4, NetObject dupParam5) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, IndexOutOfRangeException, SecurityException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionIndexOutOfRangeExceptionSecurityExceptionSocketExceptionpublic IAsyncResult BeginSendFile(java.lang.String fileName, AsyncCallback callback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, IndexOutOfRangeException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotSupportedException, PathTooLongException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, DriveNotFoundException, OperationCanceledException, NullReferenceException, SecurityException, WaitHandleCannotBeOpenedException, AccessViolationException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotSupportedExceptionPathTooLongExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionDriveNotFoundExceptionOperationCanceledExceptionNullReferenceExceptionSecurityExceptionWaitHandleCannotBeOpenedExceptionAccessViolationExceptionpublic IAsyncResult BeginSendFile(java.lang.String fileName, byte[] preBuffer, byte[] postBuffer, TransmitFileOptions flags, AsyncCallback callback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, IndexOutOfRangeException, NotSupportedException, PathTooLongException, NullReferenceException, SecurityException, IOException, WaitHandleCannotBeOpenedException, AccessViolationException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionIndexOutOfRangeExceptionNotSupportedExceptionPathTooLongExceptionNullReferenceExceptionSecurityExceptionIOExceptionWaitHandleCannotBeOpenedExceptionAccessViolationExceptionpublic IAsyncResult BeginSendFile(java.lang.String dupParam0, JCORefOut dupParam1, JCORefOut dupParam2, TransmitFileOptions dupParam3, AsyncCallback dupParam4, NetObject dupParam5) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, IndexOutOfRangeException, NotSupportedException, PathTooLongException, NullReferenceException, SecurityException, IOException, WaitHandleCannotBeOpenedException, AccessViolationException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionIndexOutOfRangeExceptionNotSupportedExceptionPathTooLongExceptionNullReferenceExceptionSecurityExceptionIOExceptionWaitHandleCannotBeOpenedExceptionAccessViolationExceptionpublic IAsyncResult BeginSendTo(byte[] buffer, int offset, int size, SocketFlags socketFlags, EndPoint remoteEP, AsyncCallback callback, NetObject state) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, SocketException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, SecurityException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionSecurityExceptionpublic IAsyncResult BeginSendTo(JCORefOut dupParam0, int dupParam1, int dupParam2, SocketFlags dupParam3, EndPoint dupParam4, AsyncCallback dupParam5, NetObject dupParam6) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, SocketException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, SecurityException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionSecurityExceptionpublic void Bind(EndPoint localEP) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, SocketException, SecurityException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionSecurityExceptionpublic static void CancelConnectAsync(SocketAsyncEventArgs e) throws java.lang.Throwable, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidOperationException, OutOfMemoryException, NullReferenceException, LockRecursionException, SynchronizationLockException
public static Socket cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into Socket, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedSocket instancejava.lang.Throwable - in case of error during cast operationpublic void close()
throws java.lang.Exception
close in interface java.lang.AutoCloseablejava.lang.Exceptionpublic void Close()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
NotSupportedException,
ConfigurationException,
ConfigurationErrorsException,
OverflowException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException
public void Close(int timeout)
throws java.lang.Throwable,
ArgumentOutOfRangeException
java.lang.ThrowableArgumentOutOfRangeExceptionpublic void Connect(EndPoint remoteEP) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, OutOfMemoryException, SocketException, IndexOutOfRangeException, FormatException, AccessViolationException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionOutOfMemoryExceptionSocketExceptionIndexOutOfRangeExceptionFormatExceptionAccessViolationExceptionpublic void Connect(IPAddress[] addresses, int port) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, SocketException, NotImplementedException, IndexOutOfRangeException, FormatException, AccessViolationException, PlatformNotSupportedException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionSocketExceptionNotImplementedExceptionIndexOutOfRangeExceptionFormatExceptionAccessViolationExceptionPlatformNotSupportedExceptionpublic void Connect(IPAddress address, int port) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, SocketException, NotImplementedException, IndexOutOfRangeException, FormatException, AccessViolationException, PlatformNotSupportedException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionSocketExceptionNotImplementedExceptionIndexOutOfRangeExceptionFormatExceptionAccessViolationExceptionPlatformNotSupportedExceptionpublic void Connect(java.lang.String host,
int port)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
NotSupportedException,
ConfigurationException,
ConfigurationErrorsException,
OverflowException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
SocketException,
IndexOutOfRangeException,
FormatException,
NotImplementedException,
AccessViolationException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionSocketExceptionIndexOutOfRangeExceptionFormatExceptionNotImplementedExceptionAccessViolationExceptionpublic boolean ConnectAsync(SocketAsyncEventArgs e) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, SocketException, SecurityException, KeyNotFoundException, IndexOutOfRangeException, FormatException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionSecurityExceptionKeyNotFoundExceptionIndexOutOfRangeExceptionFormatExceptionpublic static boolean ConnectAsync(SocketType socketType, ProtocolType protocolType, SocketAsyncEventArgs e) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, NotImplementedException, IndexOutOfRangeException, SocketException, SecurityException, ObjectDisposedException, KeyNotFoundException, FormatException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionNotImplementedExceptionIndexOutOfRangeExceptionSocketExceptionSecurityExceptionObjectDisposedExceptionKeyNotFoundExceptionFormatExceptionpublic void Disconnect(boolean reuseSocket)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
NotSupportedException,
ConfigurationException,
ConfigurationErrorsException,
OverflowException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
FormatException,
IndexOutOfRangeException,
SocketException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFormatExceptionIndexOutOfRangeExceptionSocketExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic boolean DisconnectAsync(SocketAsyncEventArgs e) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, SecurityException, NotImplementedException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionSecurityExceptionNotImplementedExceptionSocketExceptionpublic void Dispose()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
MissingManifestResourceException,
InvalidCastException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
NotSupportedException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
IndexOutOfRangeException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionNotSupportedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionIndexOutOfRangeExceptionpublic SocketInformation DuplicateAndClose(int targetProcessId) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, IndexOutOfRangeException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionIndexOutOfRangeExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic Socket EndAccept(IAsyncResult asyncResult) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, SecurityException, PlatformNotSupportedException, IndexOutOfRangeException, NotImplementedException, Win32Exception, SynchronizationLockException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAbandonedMutexExceptionSecurityExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionNotImplementedExceptionWin32ExceptionSynchronizationLockExceptionSocketExceptionpublic Socket EndAccept(JCORefOut buffer, IAsyncResult asyncResult) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, SecurityException, NullReferenceException, PlatformNotSupportedException, IndexOutOfRangeException, NotImplementedException, Win32Exception, NotSupportedException, SynchronizationLockException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAbandonedMutexExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionNotImplementedExceptionWin32ExceptionNotSupportedExceptionSynchronizationLockExceptionSocketExceptionpublic Socket EndAccept(JCORefOut buffer, JCORefOut<java.util.concurrent.atomic.AtomicInteger> bytesTransferred, IAsyncResult asyncResult) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, SecurityException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, NotImplementedException, Win32Exception, LockRecursionException, SynchronizationLockException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAbandonedMutexExceptionSecurityExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionNotImplementedExceptionWin32ExceptionLockRecursionExceptionSynchronizationLockExceptionSocketExceptionpublic void EndConnect(IAsyncResult asyncResult) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, IndexOutOfRangeException, NotImplementedException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAbandonedMutexExceptionIndexOutOfRangeExceptionNotImplementedExceptionSocketExceptionpublic void EndDisconnect(IAsyncResult asyncResult) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, IndexOutOfRangeException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAbandonedMutexExceptionIndexOutOfRangeExceptionpublic int EndReceive(IAsyncResult asyncResult) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, KeyNotFoundException, SecurityException, NullReferenceException, PlatformNotSupportedException, IndexOutOfRangeException, NotImplementedException, Win32Exception, NotSupportedException, SynchronizationLockException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAbandonedMutexExceptionKeyNotFoundExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionNotImplementedExceptionWin32ExceptionNotSupportedExceptionSynchronizationLockExceptionSocketExceptionpublic int EndReceive(IAsyncResult asyncResult, JCORefOut<SocketError> errorCode) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, KeyNotFoundException, SecurityException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, NotImplementedException, Win32Exception, LockRecursionException, SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAbandonedMutexExceptionKeyNotFoundExceptionSecurityExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionNotImplementedExceptionWin32ExceptionLockRecursionExceptionSynchronizationLockExceptionpublic int EndReceiveFrom(IAsyncResult asyncResult, JCORefOut<EndPoint> endPoint) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, SocketException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, KeyNotFoundException, SecurityException, CultureNotFoundException, PlatformNotSupportedException, Win32Exception, LockRecursionException, SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAbandonedMutexExceptionKeyNotFoundExceptionSecurityExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionWin32ExceptionLockRecursionExceptionSynchronizationLockExceptionpublic int EndReceiveMessageFrom(IAsyncResult asyncResult, JCORefOut<SocketFlags> socketFlags, JCORefOut<EndPoint> endPoint, JCORefOut<IPPacketInformation> ipPacketInformation) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, SocketException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, KeyNotFoundException, SecurityException, CultureNotFoundException, PlatformNotSupportedException, Win32Exception, LockRecursionException, SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAbandonedMutexExceptionKeyNotFoundExceptionSecurityExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionWin32ExceptionLockRecursionExceptionSynchronizationLockExceptionpublic int EndSend(IAsyncResult asyncResult) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, KeyNotFoundException, SecurityException, NullReferenceException, PlatformNotSupportedException, IndexOutOfRangeException, NotImplementedException, Win32Exception, NotSupportedException, SynchronizationLockException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAbandonedMutexExceptionKeyNotFoundExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionNotImplementedExceptionWin32ExceptionNotSupportedExceptionSynchronizationLockExceptionSocketExceptionpublic int EndSend(IAsyncResult asyncResult, JCORefOut<SocketError> errorCode) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, KeyNotFoundException, SecurityException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, NotImplementedException, Win32Exception, LockRecursionException, SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAbandonedMutexExceptionKeyNotFoundExceptionSecurityExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionNotImplementedExceptionWin32ExceptionLockRecursionExceptionSynchronizationLockExceptionpublic void EndSendFile(IAsyncResult asyncResult) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, KeyNotFoundException, IndexOutOfRangeException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAbandonedMutexExceptionKeyNotFoundExceptionIndexOutOfRangeExceptionSocketExceptionpublic int EndSendTo(IAsyncResult asyncResult) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, KeyNotFoundException, SecurityException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, NotImplementedException, Win32Exception, LockRecursionException, SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAbandonedMutexExceptionKeyNotFoundExceptionSecurityExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionNotImplementedExceptionWin32ExceptionLockRecursionExceptionSynchronizationLockExceptionpublic AddressFamily getAddressFamily() throws java.lang.Throwable
java.lang.Throwablepublic int getAvailable()
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentNullException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ConfigurationException,
ConfigurationErrorsException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionConfigurationExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic boolean getBlocking()
throws java.lang.Throwable
java.lang.Throwablepublic boolean getConnected()
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentNullException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ConfigurationErrorsException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic boolean getDontFragment()
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
NotImplementedException,
MissingManifestResourceException,
InvalidOperationException,
SocketException,
NotSupportedException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionNotImplementedExceptionMissingManifestResourceExceptionInvalidOperationExceptionSocketExceptionNotSupportedExceptionpublic boolean getDualMode()
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
NotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
MissingManifestResourceException,
ObjectDisposedException,
IndexOutOfRangeException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
SocketException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionIndexOutOfRangeExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSocketExceptionpublic boolean getEnableBroadcast()
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
NotImplementedException,
MissingManifestResourceException,
InvalidOperationException,
SocketException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionNotImplementedExceptionMissingManifestResourceExceptionInvalidOperationExceptionSocketExceptionpublic boolean getExclusiveAddressUse()
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
NotImplementedException,
MissingManifestResourceException,
InvalidOperationException,
SocketException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionNotImplementedExceptionMissingManifestResourceExceptionInvalidOperationExceptionSocketExceptionpublic boolean getIsBound()
throws java.lang.Throwable
java.lang.Throwablepublic java.lang.String getJCOAssemblyName()
IJCOBridgeReflectedgetJCOAssemblyName in interface IJCOBridgeReflectedgetJCOAssemblyName in class NetObjectString representing the Fullname of reflected Assemblypublic java.lang.String getJCOClassName()
IJCOBridgeReflectedgetJCOClassName in interface IJCOBridgeReflectedgetJCOClassName in class NetObjectString representing the Fullname of reflected Classpublic java.lang.Object getJCOInstance()
IJCOBridgeReflectedgetJCOInstance in interface IJCOBridgeReflectedgetJCOInstance in class NetObjectObject representing the CLR instance of the instantiated Classpublic java.lang.String getJCOObjectName()
IJCOBridgeReflectedgetJCOObjectName in interface IJCOBridgeReflectedgetJCOObjectName in class NetObjectString representing the name used to allocated the object
in CLR contextpublic JCType getJCOType()
IJCOBridgeReflectedgetJCOType in interface IJCOBridgeReflectedgetJCOType in class NetObjectJCType representing the CLR Type of the instantiated Classpublic LingerOption getLingerState() throws java.lang.Throwable, ObjectDisposedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArgumentNullException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, NotImplementedException, MissingManifestResourceException, InvalidOperationException, SocketException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionNotImplementedExceptionMissingManifestResourceExceptionInvalidOperationExceptionSocketExceptionpublic EndPoint getLocalEndPoint() throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ConfigurationErrorsException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, NotImplementedException, SocketException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionNotImplementedExceptionSocketExceptionpublic boolean getMulticastLoopback()
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
NotImplementedException,
MissingManifestResourceException,
InvalidOperationException,
SocketException,
NotSupportedException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionNotImplementedExceptionMissingManifestResourceExceptionInvalidOperationExceptionSocketExceptionNotSupportedExceptionpublic boolean getNoDelay()
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
NotImplementedException,
MissingManifestResourceException,
InvalidOperationException,
SocketException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionNotImplementedExceptionMissingManifestResourceExceptionInvalidOperationExceptionSocketExceptionpublic static boolean getOSSupportsIPv4()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
SocketException,
ConfigurationErrorsException,
KeyNotFoundException,
NotSupportedException,
ConfigurationException,
MulticastNotSupportedException,
SecurityException,
NullReferenceException,
InvalidOperationException,
PlatformNotSupportedException,
NotImplementedException,
Win32Exception,
SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSocketExceptionConfigurationErrorsExceptionKeyNotFoundExceptionNotSupportedExceptionConfigurationExceptionMulticastNotSupportedExceptionSecurityExceptionNullReferenceExceptionInvalidOperationExceptionPlatformNotSupportedExceptionNotImplementedExceptionWin32ExceptionSynchronizationLockExceptionpublic static boolean getOSSupportsIPv6()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
SocketException,
ConfigurationErrorsException,
KeyNotFoundException,
NotSupportedException,
ConfigurationException,
MulticastNotSupportedException,
SecurityException,
NullReferenceException,
InvalidOperationException,
PlatformNotSupportedException,
NotImplementedException,
Win32Exception,
SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSocketExceptionConfigurationErrorsExceptionKeyNotFoundExceptionNotSupportedExceptionConfigurationExceptionMulticastNotSupportedExceptionSecurityExceptionNullReferenceExceptionInvalidOperationExceptionPlatformNotSupportedExceptionNotImplementedExceptionWin32ExceptionSynchronizationLockExceptionpublic ProtocolType getProtocolType() throws java.lang.Throwable
java.lang.Throwablepublic int getReceiveBufferSize()
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
NotImplementedException,
MissingManifestResourceException,
InvalidOperationException,
SocketException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionNotImplementedExceptionMissingManifestResourceExceptionInvalidOperationExceptionSocketExceptionpublic int getReceiveTimeout()
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
NotImplementedException,
MissingManifestResourceException,
InvalidOperationException,
SocketException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionNotImplementedExceptionMissingManifestResourceExceptionInvalidOperationExceptionSocketExceptionpublic EndPoint getRemoteEndPoint() throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ConfigurationErrorsException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, NotImplementedException, SocketException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionNotImplementedExceptionSocketExceptionpublic int getSendBufferSize()
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
NotImplementedException,
MissingManifestResourceException,
InvalidOperationException,
SocketException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionNotImplementedExceptionMissingManifestResourceExceptionInvalidOperationExceptionSocketExceptionpublic int getSendTimeout()
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
NotImplementedException,
MissingManifestResourceException,
InvalidOperationException,
SocketException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionNotImplementedExceptionMissingManifestResourceExceptionInvalidOperationExceptionSocketExceptionpublic NetObject GetSocketOption(SocketOptionLevel optionLevel, SocketOptionName optionName) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ConfigurationErrorsException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SocketException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSocketExceptionpublic void GetSocketOption(SocketOptionLevel optionLevel, SocketOptionName optionName, byte[] optionValue) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionConfigurationExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic byte[] GetSocketOption(SocketOptionLevel optionLevel, SocketOptionName optionName, int optionLength) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionConfigurationExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void GetSocketOption(SocketOptionLevel dupParam0, SocketOptionName dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionConfigurationExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic SocketType getSocketType() throws java.lang.Throwable
java.lang.Throwablepublic static boolean getSupportsIPv4()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
SocketException,
ConfigurationErrorsException,
KeyNotFoundException,
NotSupportedException,
ConfigurationException,
MulticastNotSupportedException,
SecurityException,
NullReferenceException,
InvalidOperationException,
PlatformNotSupportedException,
NotImplementedException,
Win32Exception,
SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSocketExceptionConfigurationErrorsExceptionKeyNotFoundExceptionNotSupportedExceptionConfigurationExceptionMulticastNotSupportedExceptionSecurityExceptionNullReferenceExceptionInvalidOperationExceptionPlatformNotSupportedExceptionNotImplementedExceptionWin32ExceptionSynchronizationLockExceptionpublic static boolean getSupportsIPv6()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
SocketException,
ConfigurationErrorsException,
KeyNotFoundException,
NotSupportedException,
ConfigurationException,
MulticastNotSupportedException,
SecurityException,
NullReferenceException,
InvalidOperationException,
PlatformNotSupportedException,
NotImplementedException,
Win32Exception,
SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionSocketExceptionConfigurationErrorsExceptionKeyNotFoundExceptionNotSupportedExceptionConfigurationExceptionMulticastNotSupportedExceptionSecurityExceptionNullReferenceExceptionInvalidOperationExceptionPlatformNotSupportedExceptionNotImplementedExceptionWin32ExceptionSynchronizationLockExceptionpublic short getTtl()
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
NotImplementedException,
MissingManifestResourceException,
InvalidOperationException,
SocketException,
NotSupportedException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionNotImplementedExceptionMissingManifestResourceExceptionInvalidOperationExceptionSocketExceptionNotSupportedExceptionpublic boolean getUseOnlyOverlappedIO()
throws java.lang.Throwable
java.lang.Throwablepublic int IOControl(int ioControlCode,
byte[] optionInValue,
byte[] optionOutValue)
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
NotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
MissingManifestResourceException,
IndexOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionIndexOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic int IOControl(int dupParam0,
JCORefOut dupParam1,
JCORefOut dupParam2)
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
NotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
MissingManifestResourceException,
IndexOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionIndexOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic int IOControl(IOControlCode ioControlCode, byte[] optionInValue, byte[] optionOutValue) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, IndexOutOfRangeException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionIndexOutOfRangeExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic int IOControl(IOControlCode dupParam0, JCORefOut dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, IndexOutOfRangeException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionIndexOutOfRangeExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void Listen(int backlog)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
NotSupportedException,
ConfigurationException,
ConfigurationErrorsException,
OverflowException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
IndexOutOfRangeException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionIndexOutOfRangeExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic boolean Poll(int microSeconds,
SelectMode mode)
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentNullException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ConfigurationException,
ConfigurationErrorsException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionConfigurationExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic int Receive(byte[] buffer)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
IndexOutOfRangeException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
SecurityException,
NullReferenceException,
NotImplementedException,
NotSupportedException,
SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionNullReferenceExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionpublic int Receive(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
MissingManifestResourceException,
InvalidCastException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
IndexOutOfRangeException,
SecurityException,
NullReferenceException,
PlatformNotSupportedException,
NotImplementedException,
Win32Exception,
NotSupportedException,
SynchronizationLockException,
SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionIndexOutOfRangeExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionNotImplementedExceptionWin32ExceptionNotSupportedExceptionSynchronizationLockExceptionSocketExceptionpublic int Receive(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
JCORefOut<SocketError> errorCode)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
NotSupportedException,
ConfigurationException,
ConfigurationErrorsException,
OverflowException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
IndexOutOfRangeException,
SecurityException,
CultureNotFoundException,
PlatformNotSupportedException,
NotImplementedException,
Win32Exception,
LockRecursionException,
SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionIndexOutOfRangeExceptionSecurityExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNotImplementedExceptionWin32ExceptionLockRecursionExceptionSynchronizationLockExceptionpublic int Receive(byte[] buffer,
int size,
SocketFlags socketFlags)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
IndexOutOfRangeException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
SecurityException,
NullReferenceException,
NotImplementedException,
NotSupportedException,
SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionNullReferenceExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionpublic int Receive(byte[] buffer,
SocketFlags socketFlags)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
IndexOutOfRangeException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
SecurityException,
NullReferenceException,
NotImplementedException,
NotSupportedException,
SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionNullReferenceExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionpublic int Receive(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, IndexOutOfRangeException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException, NullReferenceException, NotImplementedException, NotSupportedException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionNullReferenceExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionpublic int Receive(JCORefOut dupParam0, int dupParam1, int dupParam2, SocketFlags dupParam3) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException, SecurityException, NullReferenceException, PlatformNotSupportedException, NotImplementedException, Win32Exception, NotSupportedException, SynchronizationLockException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionIndexOutOfRangeExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionNotImplementedExceptionWin32ExceptionNotSupportedExceptionSynchronizationLockExceptionSocketExceptionpublic int Receive(JCORefOut dupParam0, int dupParam1, SocketFlags dupParam2) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, IndexOutOfRangeException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException, NullReferenceException, NotImplementedException, NotSupportedException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionNullReferenceExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionpublic int Receive(JCORefOut dupParam0, SocketFlags dupParam1) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, IndexOutOfRangeException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException, NullReferenceException, NotImplementedException, NotSupportedException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionNullReferenceExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionpublic boolean ReceiveAsync(SocketAsyncEventArgs e) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, SecurityException, KeyNotFoundException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionSecurityExceptionKeyNotFoundExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic int ReceiveFrom(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
JCORefOut<EndPoint> remoteEP)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
NotSupportedException,
ConfigurationException,
ConfigurationErrorsException,
OverflowException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
NotImplementedException,
SocketException,
SecurityException,
CultureNotFoundException,
PlatformNotSupportedException,
Win32Exception,
LockRecursionException,
SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionSecurityExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionWin32ExceptionLockRecursionExceptionSynchronizationLockExceptionpublic int ReceiveFrom(byte[] buffer,
int size,
SocketFlags socketFlags,
JCORefOut<EndPoint> remoteEP)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
MissingManifestResourceException,
InvalidCastException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
NotImplementedException,
NotSupportedException,
SocketException,
SecurityException,
NullReferenceException,
PlatformNotSupportedException,
IndexOutOfRangeException,
Win32Exception,
SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionWin32ExceptionSynchronizationLockExceptionpublic int ReceiveFrom(byte[] buffer,
JCORefOut<EndPoint> remoteEP)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
MissingManifestResourceException,
InvalidCastException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
NotImplementedException,
NotSupportedException,
SocketException,
SecurityException,
NullReferenceException,
PlatformNotSupportedException,
IndexOutOfRangeException,
Win32Exception,
SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionWin32ExceptionSynchronizationLockExceptionpublic int ReceiveFrom(byte[] buffer,
SocketFlags socketFlags,
JCORefOut<EndPoint> remoteEP)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
MissingManifestResourceException,
InvalidCastException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
NotImplementedException,
NotSupportedException,
SocketException,
SecurityException,
NullReferenceException,
PlatformNotSupportedException,
IndexOutOfRangeException,
Win32Exception,
SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionWin32ExceptionSynchronizationLockExceptionpublic boolean ReceiveFromAsync(SocketAsyncEventArgs e) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, SocketException, SecurityException, KeyNotFoundException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionSecurityExceptionKeyNotFoundExceptionpublic int ReceiveMessageFrom(byte[] buffer,
int offset,
int size,
JCORefOut<SocketFlags> socketFlags,
JCORefOut<EndPoint> remoteEP,
JCORefOut<IPPacketInformation> ipPacketInformation)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
NotSupportedException,
ConfigurationException,
ConfigurationErrorsException,
OverflowException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
NotImplementedException,
SocketException,
WaitHandleCannotBeOpenedException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
AccessViolationException,
FormatException,
KeyNotFoundException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionWaitHandleCannotBeOpenedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionAccessViolationExceptionFormatExceptionKeyNotFoundExceptionpublic boolean ReceiveMessageFromAsync(SocketAsyncEventArgs e) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, SocketException, SecurityException, KeyNotFoundException, FormatException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionSecurityExceptionKeyNotFoundExceptionFormatExceptionpublic static void Select(IList checkRead, IList checkWrite, IList checkError, int microSeconds) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, TypeInitializationException, FormatException, IndexOutOfRangeException, SocketException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionTypeInitializationExceptionFormatExceptionIndexOutOfRangeExceptionSocketExceptionpublic int Send(byte[] buffer)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
IndexOutOfRangeException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
SecurityException,
NullReferenceException,
NotImplementedException,
NotSupportedException,
SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionNullReferenceExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionpublic int Send(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
MissingManifestResourceException,
InvalidCastException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
IndexOutOfRangeException,
SecurityException,
NullReferenceException,
PlatformNotSupportedException,
NotImplementedException,
Win32Exception,
NotSupportedException,
SynchronizationLockException,
SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionIndexOutOfRangeExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionNotImplementedExceptionWin32ExceptionNotSupportedExceptionSynchronizationLockExceptionSocketExceptionpublic int Send(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
JCORefOut<SocketError> errorCode)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
NotSupportedException,
ConfigurationException,
ConfigurationErrorsException,
OverflowException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
IndexOutOfRangeException,
SecurityException,
CultureNotFoundException,
PlatformNotSupportedException,
NotImplementedException,
Win32Exception,
LockRecursionException,
SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionIndexOutOfRangeExceptionSecurityExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNotImplementedExceptionWin32ExceptionLockRecursionExceptionSynchronizationLockExceptionpublic int Send(byte[] buffer,
int size,
SocketFlags socketFlags)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
IndexOutOfRangeException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
SecurityException,
NullReferenceException,
NotImplementedException,
NotSupportedException,
SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionNullReferenceExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionpublic int Send(byte[] buffer,
SocketFlags socketFlags)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
IndexOutOfRangeException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
SecurityException,
NullReferenceException,
NotImplementedException,
NotSupportedException,
SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionNullReferenceExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionpublic int Send(JCORefOut dupParam0) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, IndexOutOfRangeException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException, NullReferenceException, NotImplementedException, NotSupportedException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionNullReferenceExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionpublic int Send(JCORefOut dupParam0, int dupParam1, int dupParam2, SocketFlags dupParam3) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException, SecurityException, NullReferenceException, PlatformNotSupportedException, NotImplementedException, Win32Exception, NotSupportedException, SynchronizationLockException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionIndexOutOfRangeExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionNotImplementedExceptionWin32ExceptionNotSupportedExceptionSynchronizationLockExceptionSocketExceptionpublic int Send(JCORefOut dupParam0, int dupParam1, SocketFlags dupParam2) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, IndexOutOfRangeException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException, NullReferenceException, NotImplementedException, NotSupportedException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionNullReferenceExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionpublic int Send(JCORefOut dupParam0, SocketFlags dupParam1) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, IndexOutOfRangeException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException, NullReferenceException, NotImplementedException, NotSupportedException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionIndexOutOfRangeExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionNullReferenceExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionpublic boolean SendAsync(SocketAsyncEventArgs e) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, SecurityException, KeyNotFoundException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionSecurityExceptionKeyNotFoundExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void SendFile(java.lang.String fileName)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
MissingManifestResourceException,
InvalidCastException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
IndexOutOfRangeException,
NotSupportedException,
PathTooLongException,
NullReferenceException,
SecurityException,
IOException,
WaitHandleCannotBeOpenedException,
AccessViolationException,
KeyNotFoundException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionIndexOutOfRangeExceptionNotSupportedExceptionPathTooLongExceptionNullReferenceExceptionSecurityExceptionIOExceptionWaitHandleCannotBeOpenedExceptionAccessViolationExceptionKeyNotFoundExceptionpublic void SendFile(java.lang.String fileName,
byte[] preBuffer,
byte[] postBuffer,
TransmitFileOptions flags)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
NotSupportedException,
ConfigurationException,
ConfigurationErrorsException,
OverflowException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
IndexOutOfRangeException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
SecurityException,
WaitHandleCannotBeOpenedException,
AccessViolationException,
KeyNotFoundException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionIndexOutOfRangeExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionWaitHandleCannotBeOpenedExceptionAccessViolationExceptionKeyNotFoundExceptionpublic void SendFile(java.lang.String dupParam0,
JCORefOut dupParam1,
JCORefOut dupParam2,
TransmitFileOptions dupParam3)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
NotSupportedException,
ConfigurationException,
ConfigurationErrorsException,
OverflowException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
IndexOutOfRangeException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
SecurityException,
WaitHandleCannotBeOpenedException,
AccessViolationException,
KeyNotFoundException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionIndexOutOfRangeExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionWaitHandleCannotBeOpenedExceptionAccessViolationExceptionKeyNotFoundExceptionpublic boolean SendPacketsAsync(SocketAsyncEventArgs e) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, IndexOutOfRangeException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SecurityException, KeyNotFoundException, NotImplementedException, SocketException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionIndexOutOfRangeExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSecurityExceptionKeyNotFoundExceptionNotImplementedExceptionSocketExceptionpublic int SendTo(byte[] buffer,
EndPoint remoteEP)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
MissingManifestResourceException,
InvalidCastException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
NotImplementedException,
NotSupportedException,
SocketException,
SecurityException,
NullReferenceException,
PlatformNotSupportedException,
IndexOutOfRangeException,
Win32Exception,
SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionWin32ExceptionSynchronizationLockExceptionpublic int SendTo(byte[] buffer,
int offset,
int size,
SocketFlags socketFlags,
EndPoint remoteEP)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
NotSupportedException,
ConfigurationException,
ConfigurationErrorsException,
OverflowException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
NotImplementedException,
SocketException,
SecurityException,
CultureNotFoundException,
PlatformNotSupportedException,
IndexOutOfRangeException,
Win32Exception,
LockRecursionException,
SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionSecurityExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionWin32ExceptionLockRecursionExceptionSynchronizationLockExceptionpublic int SendTo(byte[] buffer,
int size,
SocketFlags socketFlags,
EndPoint remoteEP)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
MissingManifestResourceException,
InvalidCastException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
NotImplementedException,
NotSupportedException,
SocketException,
SecurityException,
NullReferenceException,
PlatformNotSupportedException,
IndexOutOfRangeException,
Win32Exception,
SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionWin32ExceptionSynchronizationLockExceptionpublic int SendTo(byte[] buffer,
SocketFlags socketFlags,
EndPoint remoteEP)
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
ConfigurationException,
ConfigurationErrorsException,
MissingManifestResourceException,
InvalidCastException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
ObjectDisposedException,
NotImplementedException,
NotSupportedException,
SocketException,
SecurityException,
NullReferenceException,
PlatformNotSupportedException,
IndexOutOfRangeException,
Win32Exception,
SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionWin32ExceptionSynchronizationLockExceptionpublic int SendTo(JCORefOut dupParam0, EndPoint dupParam1) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, NotSupportedException, SocketException, SecurityException, NullReferenceException, PlatformNotSupportedException, IndexOutOfRangeException, Win32Exception, SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionWin32ExceptionSynchronizationLockExceptionpublic int SendTo(JCORefOut dupParam0, int dupParam1, int dupParam2, SocketFlags dupParam3, EndPoint dupParam4) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, SocketException, SecurityException, CultureNotFoundException, PlatformNotSupportedException, IndexOutOfRangeException, Win32Exception, LockRecursionException, SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionSecurityExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionWin32ExceptionLockRecursionExceptionSynchronizationLockExceptionpublic int SendTo(JCORefOut dupParam0, int dupParam1, SocketFlags dupParam2, EndPoint dupParam3) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, NotSupportedException, SocketException, SecurityException, NullReferenceException, PlatformNotSupportedException, IndexOutOfRangeException, Win32Exception, SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionWin32ExceptionSynchronizationLockExceptionpublic int SendTo(JCORefOut dupParam0, SocketFlags dupParam1, EndPoint dupParam2) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, NotSupportedException, SocketException, SecurityException, NullReferenceException, PlatformNotSupportedException, IndexOutOfRangeException, Win32Exception, SynchronizationLockException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionConfigurationExceptionConfigurationErrorsExceptionMissingManifestResourceExceptionInvalidCastExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionNotSupportedExceptionSocketExceptionSecurityExceptionNullReferenceExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionWin32ExceptionSynchronizationLockExceptionpublic boolean SendToAsync(SocketAsyncEventArgs e) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, NotImplementedException, SocketException, SecurityException, KeyNotFoundException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionNotImplementedExceptionSocketExceptionSecurityExceptionKeyNotFoundExceptionpublic void setBlocking(boolean Blocking)
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentNullException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ConfigurationException,
ConfigurationErrorsException,
MulticastNotSupportedException,
InvalidOperationException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionConfigurationExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void setDontFragment(boolean DontFragment)
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
NotSupportedException,
CultureNotFoundException,
MissingManifestResourceException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionCultureNotFoundExceptionMissingManifestResourceExceptionpublic void setDualMode(boolean DualMode)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
NotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
MissingManifestResourceException,
ObjectDisposedException,
IndexOutOfRangeException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionIndexOutOfRangeExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void setEnableBroadcast(boolean EnableBroadcast)
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void setExclusiveAddressUse(boolean ExclusiveAddressUse)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
NotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
MissingManifestResourceException,
ObjectDisposedException,
IndexOutOfRangeException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionIndexOutOfRangeExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void SetIPProtectionLevel(IPProtectionLevel level) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionObjectDisposedExceptionIndexOutOfRangeExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void setJCOInstance(JCObject instance)
setJCOInstance in class NetObjectpublic void setLingerState(LingerOption LingerState) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, IndexOutOfRangeException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SocketException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionIndexOutOfRangeExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSocketExceptionpublic void setMulticastLoopback(boolean MulticastLoopback)
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
NotSupportedException,
CultureNotFoundException,
MissingManifestResourceException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionCultureNotFoundExceptionMissingManifestResourceExceptionpublic void setNoDelay(boolean NoDelay)
throws java.lang.Throwable,
ObjectDisposedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void setReceiveBufferSize(int ReceiveBufferSize)
throws java.lang.Throwable,
ArgumentOutOfRangeException,
ObjectDisposedException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void setReceiveTimeout(int ReceiveTimeout)
throws java.lang.Throwable,
ArgumentOutOfRangeException,
ObjectDisposedException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void setSendBufferSize(int SendBufferSize)
throws java.lang.Throwable,
ArgumentOutOfRangeException,
ObjectDisposedException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void setSendTimeout(int SendTimeout)
throws java.lang.Throwable,
ArgumentOutOfRangeException,
ObjectDisposedException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void SetSocketOption(SocketOptionLevel optionLevel, SocketOptionName optionName, boolean optionValue) throws java.lang.Throwable, ObjectDisposedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArgumentNullException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void SetSocketOption(SocketOptionLevel optionLevel, SocketOptionName optionName, byte[] optionValue) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionConfigurationExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void SetSocketOption(SocketOptionLevel optionLevel, SocketOptionName optionName, int optionValue) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ConfigurationErrorsException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void SetSocketOption(SocketOptionLevel dupParam0, SocketOptionName dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentOutOfRangeExceptionIndexOutOfRangeExceptionArgumentExceptionConfigurationExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionpublic void SetSocketOption(SocketOptionLevel optionLevel, SocketOptionName optionName, NetObject optionValue) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, FormatException, IndexOutOfRangeException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, SocketException
java.lang.ThrowableObjectDisposedExceptionArgumentNullExceptionArgumentExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionMissingManifestResourceExceptionFormatExceptionIndexOutOfRangeExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionSocketExceptionpublic void setTtl(short Ttl)
throws java.lang.Throwable,
ArgumentOutOfRangeException,
ObjectDisposedException,
IndexOutOfRangeException,
ArgumentException,
ArgumentNullException,
ConfigurationErrorsException,
MulticastNotSupportedException,
OutOfMemoryException,
FileNotFoundException,
DirectoryNotFoundException,
UnauthorizedAccessException,
IOException,
PathTooLongException,
DriveNotFoundException,
OperationCanceledException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
NotSupportedException,
CultureNotFoundException,
MissingManifestResourceException
java.lang.ThrowableArgumentOutOfRangeExceptionObjectDisposedExceptionIndexOutOfRangeExceptionArgumentExceptionArgumentNullExceptionConfigurationErrorsExceptionMulticastNotSupportedExceptionOutOfMemoryExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledExceptionInvalidOperationExceptionMissingMethodExceptionTargetInvocationExceptionNotImplementedExceptionNotSupportedExceptionCultureNotFoundExceptionMissingManifestResourceExceptionpublic void setUseOnlyOverlappedIO(boolean UseOnlyOverlappedIO)
throws java.lang.Throwable,
ArgumentNullException,
ArgumentException,
InvalidOperationException,
MissingMethodException,
TargetInvocationException,
NotImplementedException,
NotSupportedException,
ArgumentOutOfRangeException,
CultureNotFoundException,
MissingManifestResourceException,
ObjectDisposedException
public void Shutdown(SocketShutdown how) throws java.lang.Throwable, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, NotSupportedException, ConfigurationException, ConfigurationErrorsException, OverflowException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, ObjectDisposedException, IndexOutOfRangeException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionNotSupportedExceptionConfigurationExceptionConfigurationErrorsExceptionOverflowExceptionMulticastNotSupportedExceptionInvalidOperationExceptionOutOfMemoryExceptionObjectDisposedExceptionIndexOutOfRangeExceptionFileNotFoundExceptionDirectoryNotFoundExceptionUnauthorizedAccessExceptionIOExceptionPathTooLongExceptionDriveNotFoundExceptionOperationCanceledException