Package system.net.sockets
Class UdpClient
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.net.sockets.UdpClient
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,IJCOBridgeReflected
public class UdpClient extends NetObject implements java.lang.AutoCloseable
The base .NET class managing System.Net.Sockets.UdpClient, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Net.Sockets.UdpClient
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089static java.lang.String
assemblyShortName
Assembly name: Systemstatic java.lang.String
className
Qualified class name: System.Net.Sockets.UdpClientstatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description UdpClient()
UdpClient(int port)
UdpClient(int port, AddressFamily family)
UdpClient(java.lang.Object instance)
Internal constructor.UdpClient(java.lang.String hostname, int port)
UdpClient(IPEndPoint localEP)
UdpClient(AddressFamily family)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
AllowNatTraversal(boolean allowed)
IAsyncResult
BeginReceive(AsyncCallback requestCallback, NetObject state)
IAsyncResult
BeginSend(byte[] datagram, int bytes, java.lang.String hostname, int port, AsyncCallback requestCallback, NetObject state)
IAsyncResult
BeginSend(byte[] datagram, int bytes, AsyncCallback requestCallback, NetObject state)
IAsyncResult
BeginSend(byte[] datagram, int bytes, IPEndPoint endPoint, AsyncCallback requestCallback, NetObject state)
IAsyncResult
BeginSend(JCORefOut dupParam0, int dupParam1, java.lang.String dupParam2, int dupParam3, AsyncCallback dupParam4, NetObject dupParam5)
IAsyncResult
BeginSend(JCORefOut dupParam0, int dupParam1, AsyncCallback dupParam2, NetObject dupParam3)
IAsyncResult
BeginSend(JCORefOut dupParam0, int dupParam1, IPEndPoint dupParam2, AsyncCallback dupParam3, NetObject dupParam4)
static UdpClient
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoUdpClient
, a cast assert is made to check if types are compatible.void
close()
void
Close()
void
Connect(java.lang.String hostname, int port)
void
Connect(IPAddress addr, int port)
void
Connect(IPEndPoint endPoint)
void
Dispose()
void
DropMulticastGroup(IPAddress multicastAddr)
void
DropMulticastGroup(IPAddress multicastAddr, int ifindex)
byte[]
EndReceive(IAsyncResult asyncResult, JCORefOut<IPEndPoint> remoteEP)
int
EndSend(IAsyncResult asyncResult)
int
getAvailable()
Socket
getClient()
boolean
getDontFragment()
boolean
getEnableBroadcast()
boolean
getExclusiveAddressUse()
java.lang.String
getJCOAssemblyName()
Returns the reflected Assembly namejava.lang.String
getJCOClassName()
Returns the reflected Class namejava.lang.Object
getJCOInstance()
Returns the instantiated classjava.lang.String
getJCOObjectName()
Returns the reflected Class name used to build the objectJCType
getJCOType()
Returns the instantiated class Typeboolean
getMulticastLoopback()
short
getTtl()
void
JoinMulticastGroup(int ifindex, IPAddress multicastAddr)
void
JoinMulticastGroup(IPAddress multicastAddr)
void
JoinMulticastGroup(IPAddress multicastAddr, int timeToLive)
void
JoinMulticastGroup(IPAddress multicastAddr, IPAddress localAddress)
byte[]
Receive(JCORefOut<IPEndPoint> remoteEP)
int
Send(byte[] dgram, int bytes)
int
Send(byte[] dgram, int bytes, java.lang.String hostname, int port)
int
Send(byte[] dgram, int bytes, IPEndPoint endPoint)
int
Send(JCORefOut dupParam0, int dupParam1)
int
Send(JCORefOut dupParam0, int dupParam1, java.lang.String dupParam2, int dupParam3)
int
Send(JCORefOut dupParam0, int dupParam1, IPEndPoint dupParam2)
void
setClient(Socket Client)
void
setDontFragment(boolean DontFragment)
void
setEnableBroadcast(boolean EnableBroadcast)
void
setExclusiveAddressUse(boolean ExclusiveAddressUse)
void
setJCOInstance(JCObject instance)
void
setMulticastLoopback(boolean MulticastLoopback)
void
setTtl(short Ttl)
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Net.Sockets.UdpClient- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UdpClient
public UdpClient(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
UdpClient
public UdpClient() throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, SocketException, SecurityException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
SocketException
SecurityException
NotSupportedException
-
UdpClient
public UdpClient(int port) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, IndexOutOfRangeException, SocketException, SecurityException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
IndexOutOfRangeException
SocketException
SecurityException
NotSupportedException
-
UdpClient
public UdpClient(int port, AddressFamily family) throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, IndexOutOfRangeException, SocketException, SecurityException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
ConfigurationException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
IndexOutOfRangeException
SocketException
SecurityException
-
UdpClient
public UdpClient(IPEndPoint localEP) throws java.lang.Throwable, ArgumentNullException, ArgumentException, NotImplementedException, CultureNotFoundException, IndexOutOfRangeException, ArgumentOutOfRangeException, MissingManifestResourceException, ObjectDisposedException, InvalidOperationException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, SocketException, SecurityException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
NotImplementedException
CultureNotFoundException
IndexOutOfRangeException
ArgumentOutOfRangeException
MissingManifestResourceException
ObjectDisposedException
InvalidOperationException
ConfigurationException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
SocketException
SecurityException
NotSupportedException
-
UdpClient
public UdpClient(AddressFamily family) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, FormatException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, IndexOutOfRangeException, SocketException, SecurityException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
FormatException
ConfigurationException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
IndexOutOfRangeException
SocketException
SecurityException
-
UdpClient
public UdpClient(java.lang.String hostname, int port) throws java.lang.Throwable, ArgumentNullException, ArgumentOutOfRangeException, ObjectDisposedException, ArgumentException, ConfigurationException, ConfigurationErrorsException, IndexOutOfRangeException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, SocketException, FormatException, MissingMethodException, TargetInvocationException, NotImplementedException, AccessViolationException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentOutOfRangeException
ObjectDisposedException
ArgumentException
ConfigurationException
ConfigurationErrorsException
IndexOutOfRangeException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
SocketException
FormatException
MissingMethodException
TargetInvocationException
NotImplementedException
AccessViolationException
NotSupportedException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static UdpClient cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoUdpClient
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
UdpClient
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
EndReceive
public byte[] EndReceive(IAsyncResult asyncResult, JCORefOut<IPEndPoint> remoteEP) throws java.lang.Throwable, ObjectDisposedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, NotImplementedException, NotSupportedException, SocketException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, KeyNotFoundException, SecurityException, NullReferenceException, PlatformNotSupportedException, IndexOutOfRangeException, Win32Exception, SynchronizationLockException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
NotImplementedException
NotSupportedException
SocketException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
KeyNotFoundException
SecurityException
NullReferenceException
PlatformNotSupportedException
IndexOutOfRangeException
Win32Exception
SynchronizationLockException
-
Receive
public byte[] Receive(JCORefOut<IPEndPoint> remoteEP) throws java.lang.Throwable, ObjectDisposedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, IndexOutOfRangeException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, NotImplementedException, NotSupportedException, SocketException, SecurityException, NullReferenceException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
IndexOutOfRangeException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
NotImplementedException
NotSupportedException
SocketException
SecurityException
NullReferenceException
-
EndSend
public int EndSend(IAsyncResult asyncResult) throws java.lang.Throwable, ObjectDisposedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, IndexOutOfRangeException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AbandonedMutexException, SecurityException, NullReferenceException, NotImplementedException, NotSupportedException, SocketException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
IndexOutOfRangeException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AbandonedMutexException
SecurityException
NullReferenceException
NotImplementedException
NotSupportedException
SocketException
-
Send
public int Send(byte[] dgram, int bytes) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException, SecurityException, NullReferenceException, SocketException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ConfigurationException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
IndexOutOfRangeException
SecurityException
NullReferenceException
SocketException
-
Send
public int Send(JCORefOut dupParam0, int dupParam1) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException, SecurityException, NullReferenceException, SocketException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ConfigurationException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
IndexOutOfRangeException
SecurityException
NullReferenceException
SocketException
-
Send
public int Send(byte[] dgram, int bytes, IPEndPoint endPoint) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException, SecurityException, NullReferenceException, SocketException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ConfigurationException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
IndexOutOfRangeException
SecurityException
NullReferenceException
SocketException
-
Send
public int Send(JCORefOut dupParam0, int dupParam1, IPEndPoint dupParam2) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException, SecurityException, NullReferenceException, SocketException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ConfigurationException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
IndexOutOfRangeException
SecurityException
NullReferenceException
SocketException
-
Send
public int Send(byte[] dgram, int bytes, java.lang.String hostname, int port) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException, SecurityException, NullReferenceException, SocketException, FormatException, AccessViolationException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ConfigurationException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
IndexOutOfRangeException
SecurityException
NullReferenceException
SocketException
FormatException
AccessViolationException
-
Send
public int Send(JCORefOut dupParam0, int dupParam1, java.lang.String dupParam2, int dupParam3) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, IndexOutOfRangeException, SecurityException, NullReferenceException, SocketException, FormatException, AccessViolationException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ConfigurationException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
IndexOutOfRangeException
SecurityException
NullReferenceException
SocketException
FormatException
AccessViolationException
-
BeginReceive
public IAsyncResult BeginReceive(AsyncCallback requestCallback, NetObject state) throws java.lang.Throwable, ObjectDisposedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, NotImplementedException, NotSupportedException, SocketException, WaitHandleCannotBeOpenedException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException, AccessViolationException, SecurityException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentException
ArgumentNullException
ArgumentOutOfRangeException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
NotImplementedException
NotSupportedException
SocketException
WaitHandleCannotBeOpenedException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
AccessViolationException
SecurityException
-
BeginSend
public IAsyncResult BeginSend(byte[] datagram, int bytes, AsyncCallback requestCallback, NetObject state) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, IndexOutOfRangeException, AccessViolationException, SecurityException, NullReferenceException, SocketException, NotSupportedException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
IndexOutOfRangeException
AccessViolationException
SecurityException
NullReferenceException
SocketException
NotSupportedException
-
BeginSend
public IAsyncResult BeginSend(JCORefOut dupParam0, int dupParam1, AsyncCallback dupParam2, NetObject dupParam3) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, IndexOutOfRangeException, AccessViolationException, SecurityException, NullReferenceException, SocketException, NotSupportedException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
IndexOutOfRangeException
AccessViolationException
SecurityException
NullReferenceException
SocketException
NotSupportedException
-
BeginSend
public IAsyncResult BeginSend(byte[] datagram, int bytes, IPEndPoint endPoint, AsyncCallback requestCallback, NetObject state) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, CultureNotFoundException, MissingManifestResourceException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, WaitHandleCannotBeOpenedException, AccessViolationException, IndexOutOfRangeException, SecurityException, SocketException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
CultureNotFoundException
MissingManifestResourceException
ConfigurationException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
WaitHandleCannotBeOpenedException
AccessViolationException
IndexOutOfRangeException
SecurityException
SocketException
-
BeginSend
public IAsyncResult BeginSend(JCORefOut dupParam0, int dupParam1, IPEndPoint dupParam2, AsyncCallback dupParam3, NetObject dupParam4) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, CultureNotFoundException, MissingManifestResourceException, ConfigurationException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, WaitHandleCannotBeOpenedException, AccessViolationException, IndexOutOfRangeException, SecurityException, SocketException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
CultureNotFoundException
MissingManifestResourceException
ConfigurationException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
WaitHandleCannotBeOpenedException
AccessViolationException
IndexOutOfRangeException
SecurityException
SocketException
-
BeginSend
public IAsyncResult BeginSend(byte[] datagram, int bytes, java.lang.String hostname, int port, AsyncCallback requestCallback, NetObject state) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, OutOfMemoryException, SocketException, IndexOutOfRangeException, FormatException, AccessViolationException, SecurityException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
OutOfMemoryException
SocketException
IndexOutOfRangeException
FormatException
AccessViolationException
SecurityException
NullReferenceException
-
BeginSend
public IAsyncResult BeginSend(JCORefOut dupParam0, int dupParam1, java.lang.String dupParam2, int dupParam3, AsyncCallback dupParam4, NetObject dupParam5) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, ConfigurationException, ConfigurationErrorsException, InvalidCastException, MulticastNotSupportedException, OutOfMemoryException, SocketException, IndexOutOfRangeException, FormatException, AccessViolationException, SecurityException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
ConfigurationException
ConfigurationErrorsException
InvalidCastException
MulticastNotSupportedException
OutOfMemoryException
SocketException
IndexOutOfRangeException
FormatException
AccessViolationException
SecurityException
NullReferenceException
-
AllowNatTraversal
public void AllowNatTraversal(boolean allowed) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, OutOfMemoryException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
OutOfMemoryException
NotSupportedException
-
Close
public void Close() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
-
Connect
public void Connect(IPAddress addr, int port) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, OutOfMemoryException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, InvalidOperationException, NotSupportedException, SocketException, FormatException, AccessViolationException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
OutOfMemoryException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
InvalidOperationException
NotSupportedException
SocketException
FormatException
AccessViolationException
-
Connect
public void Connect(IPEndPoint endPoint) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, OutOfMemoryException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, NotSupportedException, SocketException, FormatException, AccessViolationException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
OutOfMemoryException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
NotSupportedException
SocketException
FormatException
AccessViolationException
PlatformNotSupportedException
-
Connect
public void Connect(java.lang.String hostname, int port) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, ConfigurationException, ConfigurationErrorsException, MissingManifestResourceException, InvalidCastException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, SocketException, IndexOutOfRangeException, FormatException, NotImplementedException, SecurityException, MissingMethodException, TargetInvocationException, NotSupportedException, AccessViolationException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
ConfigurationException
ConfigurationErrorsException
MissingManifestResourceException
InvalidCastException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
SocketException
IndexOutOfRangeException
FormatException
NotImplementedException
SecurityException
MissingMethodException
TargetInvocationException
NotSupportedException
AccessViolationException
-
Dispose
public void Dispose() throws java.lang.Throwable, ArgumentException, ArgumentNullException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentNullException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
-
DropMulticastGroup
public void DropMulticastGroup(IPAddress multicastAddr) 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
- 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
-
DropMulticastGroup
public void DropMulticastGroup(IPAddress multicastAddr, int ifindex) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, IndexOutOfRangeException, SocketException, FormatException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
IndexOutOfRangeException
SocketException
FormatException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
JoinMulticastGroup
public void JoinMulticastGroup(int ifindex, IPAddress multicastAddr) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, NotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, IndexOutOfRangeException, SocketException, FormatException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
NotSupportedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
IndexOutOfRangeException
SocketException
FormatException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
JoinMulticastGroup
public void JoinMulticastGroup(IPAddress multicastAddr) 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
- 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
-
JoinMulticastGroup
public void JoinMulticastGroup(IPAddress multicastAddr, int timeToLive) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, IndexOutOfRangeException, OutOfMemoryException, SocketException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentOutOfRangeException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
IndexOutOfRangeException
OutOfMemoryException
SocketException
-
JoinMulticastGroup
public void JoinMulticastGroup(IPAddress multicastAddr, IPAddress localAddress) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, SocketException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, ConfigurationErrorsException, MulticastNotSupportedException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
SocketException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
ConfigurationErrorsException
MulticastNotSupportedException
OutOfMemoryException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
close
public void close() throws java.lang.Exception
- Specified by:
close
in interfacejava.lang.AutoCloseable
- Throws:
java.lang.Exception
-
getDontFragment
public boolean getDontFragment() throws java.lang.Throwable, ObjectDisposedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArgumentNullException, OutOfMemoryException, MissingManifestResourceException, NotImplementedException, InvalidOperationException, SocketException, NotSupportedException
-
setDontFragment
public void setDontFragment(boolean DontFragment) throws java.lang.Throwable, ObjectDisposedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArgumentNullException, OutOfMemoryException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, NotSupportedException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
ArgumentNullException
OutOfMemoryException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
NotSupportedException
-
getEnableBroadcast
public boolean getEnableBroadcast() throws java.lang.Throwable, ObjectDisposedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArgumentNullException, OutOfMemoryException, MissingManifestResourceException, NotImplementedException, InvalidOperationException, SocketException
-
setEnableBroadcast
public void setEnableBroadcast(boolean EnableBroadcast) throws java.lang.Throwable, ObjectDisposedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArgumentNullException, OutOfMemoryException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
ArgumentNullException
OutOfMemoryException
-
getExclusiveAddressUse
public boolean getExclusiveAddressUse() throws java.lang.Throwable, ObjectDisposedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArgumentNullException, OutOfMemoryException, MissingManifestResourceException, NotImplementedException, InvalidOperationException, SocketException
-
setExclusiveAddressUse
public void setExclusiveAddressUse(boolean ExclusiveAddressUse) throws java.lang.Throwable, ArgumentNullException, ArgumentException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, ArgumentOutOfRangeException, CultureNotFoundException, MissingManifestResourceException, ObjectDisposedException, IndexOutOfRangeException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentNullException
ArgumentException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
ArgumentOutOfRangeException
CultureNotFoundException
MissingManifestResourceException
ObjectDisposedException
IndexOutOfRangeException
OutOfMemoryException
-
getMulticastLoopback
public boolean getMulticastLoopback() throws java.lang.Throwable, ObjectDisposedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArgumentNullException, OutOfMemoryException, MissingManifestResourceException, NotImplementedException, InvalidOperationException, SocketException, NotSupportedException
-
setMulticastLoopback
public void setMulticastLoopback(boolean MulticastLoopback) throws java.lang.Throwable, ObjectDisposedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArgumentNullException, OutOfMemoryException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, NotSupportedException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
ArgumentNullException
OutOfMemoryException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
NotSupportedException
-
getTtl
public short getTtl() throws java.lang.Throwable, ObjectDisposedException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ArgumentNullException, OutOfMemoryException, MissingManifestResourceException, NotImplementedException, InvalidOperationException, SocketException, NotSupportedException
-
setTtl
public void setTtl(short Ttl) throws java.lang.Throwable, ArgumentOutOfRangeException, ObjectDisposedException, IndexOutOfRangeException, ArgumentException, ArgumentNullException, OutOfMemoryException, InvalidOperationException, MissingMethodException, TargetInvocationException, NotImplementedException, CultureNotFoundException, MissingManifestResourceException, NotSupportedException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ObjectDisposedException
IndexOutOfRangeException
ArgumentException
ArgumentNullException
OutOfMemoryException
InvalidOperationException
MissingMethodException
TargetInvocationException
NotImplementedException
CultureNotFoundException
MissingManifestResourceException
NotSupportedException
-
getAvailable
public int getAvailable() throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentOutOfRangeException, IndexOutOfRangeException, ArgumentException, ConfigurationErrorsException, MulticastNotSupportedException, InvalidOperationException, OutOfMemoryException, FileNotFoundException, DirectoryNotFoundException, UnauthorizedAccessException, IOException, PathTooLongException, DriveNotFoundException, OperationCanceledException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentOutOfRangeException
IndexOutOfRangeException
ArgumentException
ConfigurationErrorsException
MulticastNotSupportedException
InvalidOperationException
OutOfMemoryException
FileNotFoundException
DirectoryNotFoundException
UnauthorizedAccessException
IOException
PathTooLongException
DriveNotFoundException
OperationCanceledException
-
getClient
public Socket getClient() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setClient
public void setClient(Socket Client) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-