Package system.net.networkinformation
Class Ping
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.MarshalByRefObject
-
- system.componentmodel.Component
-
- system.net.networkinformation.Ping
-
- All Implemented Interfaces:
java.lang.AutoCloseable
,IJCOBridgeReflected
public class Ping extends Component
The base .NET class managing System.Net.NetworkInformation.Ping, System.Net.Ping, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Net.NetworkInformation.Ping
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.Net.Ping, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3astatic java.lang.String
assemblyShortName
Assembly name: System.Net.Pingstatic java.lang.String
className
Qualified class name: System.Net.NetworkInformation.Pingstatic JCType
classType
The type managed from JCOBridge.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description void
addPingCompleted(PingCompletedEventHandler handler)
static Ping
cast(IJCOBridgeReflected from)
Try to cast theIJCOBridgeReflected
instance intoPing
, a cast assert is made to check if types are compatible.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 Typevoid
removePingCompleted(PingCompletedEventHandler handler)
PingReply
Send(java.lang.String hostNameOrAddress)
PingReply
Send(java.lang.String hostNameOrAddress, int timeout)
PingReply
Send(java.lang.String hostNameOrAddress, int timeout, byte[] buffer)
PingReply
Send(java.lang.String hostNameOrAddress, int timeout, byte[] buffer, PingOptions options)
PingReply
Send(java.lang.String dupParam0, int dupParam1, JCORefOut dupParam2)
PingReply
Send(java.lang.String dupParam0, int dupParam1, JCORefOut dupParam2, PingOptions dupParam3)
PingReply
Send(java.lang.String hostNameOrAddress, TimeSpan timeout, byte[] buffer, PingOptions options)
PingReply
Send(java.lang.String dupParam0, TimeSpan dupParam1, JCORefOut dupParam2, PingOptions dupParam3)
PingReply
Send(IPAddress address)
PingReply
Send(IPAddress address, int timeout)
PingReply
Send(IPAddress address, int timeout, byte[] buffer)
PingReply
Send(IPAddress address, int timeout, byte[] buffer, PingOptions options)
PingReply
Send(IPAddress dupParam0, int dupParam1, JCORefOut dupParam2)
PingReply
Send(IPAddress dupParam0, int dupParam1, JCORefOut dupParam2, PingOptions dupParam3)
PingReply
Send(IPAddress address, TimeSpan timeout, byte[] buffer, PingOptions options)
PingReply
Send(IPAddress dupParam0, TimeSpan dupParam1, JCORefOut dupParam2, PingOptions dupParam3)
void
SendAsync(java.lang.String hostNameOrAddress, int timeout, byte[] buffer, NetObject userToken)
void
SendAsync(java.lang.String hostNameOrAddress, int timeout, byte[] buffer, PingOptions options, NetObject userToken)
void
SendAsync(java.lang.String dupParam0, int dupParam1, JCORefOut dupParam2, NetObject dupParam3)
void
SendAsync(java.lang.String dupParam0, int dupParam1, JCORefOut dupParam2, PingOptions dupParam3, NetObject dupParam4)
void
SendAsync(java.lang.String hostNameOrAddress, int timeout, NetObject userToken)
void
SendAsync(java.lang.String hostNameOrAddress, NetObject userToken)
void
SendAsync(IPAddress address, int timeout, byte[] buffer, NetObject userToken)
void
SendAsync(IPAddress address, int timeout, byte[] buffer, PingOptions options, NetObject userToken)
void
SendAsync(IPAddress dupParam0, int dupParam1, JCORefOut dupParam2, NetObject dupParam3)
void
SendAsync(IPAddress dupParam0, int dupParam1, JCORefOut dupParam2, PingOptions dupParam3, NetObject dupParam4)
void
SendAsync(IPAddress address, int timeout, NetObject userToken)
void
SendAsync(IPAddress address, NetObject userToken)
void
SendAsyncCancel()
void
setJCOInstance(JCObject instance)
-
Methods inherited from class system.componentmodel.Component
addDisposed, close, Dispose, getContainer, getSite, removeDisposed, setSite
-
Methods inherited from class system.MarshalByRefObject
GetLifetimeService, InitializeLifetimeService
-
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Net.Ping, Version=9.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Net.Ping- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Net.NetworkInformation.Ping- See Also:
- Constant Field Values
-
-
Constructor Detail
-
Ping
public Ping(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
Ping
public Ping() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
-
-
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 classComponent
- 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 classComponent
- 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 classComponent
- 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 classComponent
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classComponent
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classComponent
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static Ping cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoPing
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
Ping
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
Send
public PingReply Send(IPAddress address, int timeout, byte[] buffer, PingOptions options) throws java.lang.Throwable, NotSupportedException, ArgumentException, ObjectDisposedException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, FormatException, ArrayTypeMismatchException, SocketException, ArgumentNullException, OutOfMemoryException, InvalidOperationException, MissingMethodException, TargetInvocationException, Win32Exception, WaitHandleCannotBeOpenedException, EventSourceException, TaskSchedulerException, TaskCanceledException, AggregateException, PingException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
ObjectDisposedException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
FormatException
ArrayTypeMismatchException
SocketException
ArgumentNullException
OutOfMemoryException
InvalidOperationException
MissingMethodException
TargetInvocationException
Win32Exception
WaitHandleCannotBeOpenedException
EventSourceException
TaskSchedulerException
TaskCanceledException
AggregateException
PingException
-
Send
public PingReply Send(IPAddress dupParam0, int dupParam1, JCORefOut dupParam2, PingOptions dupParam3) throws java.lang.Throwable, NotSupportedException, ArgumentException, ObjectDisposedException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, FormatException, ArrayTypeMismatchException, SocketException, ArgumentNullException, OutOfMemoryException, InvalidOperationException, MissingMethodException, TargetInvocationException, Win32Exception, WaitHandleCannotBeOpenedException, EventSourceException, TaskSchedulerException, TaskCanceledException, AggregateException, PingException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
ObjectDisposedException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
FormatException
ArrayTypeMismatchException
SocketException
ArgumentNullException
OutOfMemoryException
InvalidOperationException
MissingMethodException
TargetInvocationException
Win32Exception
WaitHandleCannotBeOpenedException
EventSourceException
TaskSchedulerException
TaskCanceledException
AggregateException
PingException
-
Send
public PingReply Send(IPAddress address, int timeout, byte[] buffer) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, ArrayTypeMismatchException, SocketException, InvalidOperationException, MissingMethodException, TargetInvocationException, Win32Exception, OutOfMemoryException, WaitHandleCannotBeOpenedException, TaskSchedulerException, TaskCanceledException, AggregateException, PingException, LockRecursionException, AbandonedMutexException, NullReferenceException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
NotSupportedException
ArrayTypeMismatchException
SocketException
InvalidOperationException
MissingMethodException
TargetInvocationException
Win32Exception
OutOfMemoryException
WaitHandleCannotBeOpenedException
TaskSchedulerException
TaskCanceledException
AggregateException
PingException
LockRecursionException
AbandonedMutexException
NullReferenceException
-
Send
public PingReply Send(IPAddress dupParam0, int dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, ArrayTypeMismatchException, SocketException, InvalidOperationException, MissingMethodException, TargetInvocationException, Win32Exception, OutOfMemoryException, WaitHandleCannotBeOpenedException, TaskSchedulerException, TaskCanceledException, AggregateException, PingException, LockRecursionException, AbandonedMutexException, NullReferenceException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
PlatformNotSupportedException
ArgumentOutOfRangeException
NotSupportedException
ArrayTypeMismatchException
SocketException
InvalidOperationException
MissingMethodException
TargetInvocationException
Win32Exception
OutOfMemoryException
WaitHandleCannotBeOpenedException
TaskSchedulerException
TaskCanceledException
AggregateException
PingException
LockRecursionException
AbandonedMutexException
NullReferenceException
-
Send
public PingReply Send(IPAddress address, int timeout) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, ArrayTypeMismatchException, SocketException, MissingMethodException, TargetInvocationException, Win32Exception, OutOfMemoryException, WaitHandleCannotBeOpenedException, TaskSchedulerException, TaskCanceledException, AggregateException, PingException, LockRecursionException, NullReferenceException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
InvalidOperationException
PlatformNotSupportedException
ArgumentOutOfRangeException
NotSupportedException
ArrayTypeMismatchException
SocketException
MissingMethodException
TargetInvocationException
Win32Exception
OutOfMemoryException
WaitHandleCannotBeOpenedException
TaskSchedulerException
TaskCanceledException
AggregateException
PingException
LockRecursionException
NullReferenceException
-
Send
public PingReply Send(IPAddress address, TimeSpan timeout, byte[] buffer, PingOptions options) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException, SocketException, ArgumentNullException, MissingMethodException, TargetInvocationException, Win32Exception, OutOfMemoryException, WaitHandleCannotBeOpenedException, TaskSchedulerException, TaskCanceledException, AggregateException, PingException, LockRecursionException, AbandonedMutexException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
IndexOutOfRangeException
FormatException
SocketException
ArgumentNullException
MissingMethodException
TargetInvocationException
Win32Exception
OutOfMemoryException
WaitHandleCannotBeOpenedException
TaskSchedulerException
TaskCanceledException
AggregateException
PingException
LockRecursionException
AbandonedMutexException
NullReferenceException
-
Send
public PingReply Send(IPAddress dupParam0, TimeSpan dupParam1, JCORefOut dupParam2, PingOptions dupParam3) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException, SocketException, ArgumentNullException, MissingMethodException, TargetInvocationException, Win32Exception, OutOfMemoryException, WaitHandleCannotBeOpenedException, TaskSchedulerException, TaskCanceledException, AggregateException, PingException, LockRecursionException, AbandonedMutexException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
IndexOutOfRangeException
FormatException
SocketException
ArgumentNullException
MissingMethodException
TargetInvocationException
Win32Exception
OutOfMemoryException
WaitHandleCannotBeOpenedException
TaskSchedulerException
TaskCanceledException
AggregateException
PingException
LockRecursionException
AbandonedMutexException
NullReferenceException
-
Send
public PingReply Send(IPAddress address) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, ArrayTypeMismatchException, SocketException, MissingMethodException, TargetInvocationException, Win32Exception, OutOfMemoryException, WaitHandleCannotBeOpenedException, TaskSchedulerException, TaskCanceledException, AggregateException, PingException, LockRecursionException, NullReferenceException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
InvalidOperationException
PlatformNotSupportedException
ArgumentOutOfRangeException
NotSupportedException
ArrayTypeMismatchException
SocketException
MissingMethodException
TargetInvocationException
Win32Exception
OutOfMemoryException
WaitHandleCannotBeOpenedException
TaskSchedulerException
TaskCanceledException
AggregateException
PingException
LockRecursionException
NullReferenceException
-
Send
public PingReply Send(java.lang.String hostNameOrAddress, int timeout, byte[] buffer, PingOptions options) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, IndexOutOfRangeException, OutOfMemoryException, FormatException, SocketException, MissingMethodException, TargetInvocationException, Win32Exception, WaitHandleCannotBeOpenedException, TaskSchedulerException, TaskCanceledException, AggregateException, PingException, LockRecursionException, AbandonedMutexException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
IndexOutOfRangeException
OutOfMemoryException
FormatException
SocketException
MissingMethodException
TargetInvocationException
Win32Exception
WaitHandleCannotBeOpenedException
TaskSchedulerException
TaskCanceledException
AggregateException
PingException
LockRecursionException
AbandonedMutexException
NullReferenceException
-
Send
public PingReply Send(java.lang.String dupParam0, int dupParam1, JCORefOut dupParam2, PingOptions dupParam3) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, IndexOutOfRangeException, OutOfMemoryException, FormatException, SocketException, MissingMethodException, TargetInvocationException, Win32Exception, WaitHandleCannotBeOpenedException, TaskSchedulerException, TaskCanceledException, AggregateException, PingException, LockRecursionException, AbandonedMutexException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
CultureNotFoundException
ObjectDisposedException
IndexOutOfRangeException
OutOfMemoryException
FormatException
SocketException
MissingMethodException
TargetInvocationException
Win32Exception
WaitHandleCannotBeOpenedException
TaskSchedulerException
TaskCanceledException
AggregateException
PingException
LockRecursionException
AbandonedMutexException
NullReferenceException
-
Send
public PingReply Send(java.lang.String hostNameOrAddress, int timeout, byte[] buffer) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException, FormatException, SocketException, MissingMethodException, TargetInvocationException, Win32Exception, WaitHandleCannotBeOpenedException, TaskSchedulerException, TaskCanceledException, AggregateException, PingException, LockRecursionException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
OutOfMemoryException
FormatException
SocketException
MissingMethodException
TargetInvocationException
Win32Exception
WaitHandleCannotBeOpenedException
TaskSchedulerException
TaskCanceledException
AggregateException
PingException
LockRecursionException
NullReferenceException
-
Send
public PingReply Send(java.lang.String dupParam0, int dupParam1, JCORefOut dupParam2) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException, FormatException, SocketException, MissingMethodException, TargetInvocationException, Win32Exception, WaitHandleCannotBeOpenedException, TaskSchedulerException, TaskCanceledException, AggregateException, PingException, LockRecursionException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
OutOfMemoryException
FormatException
SocketException
MissingMethodException
TargetInvocationException
Win32Exception
WaitHandleCannotBeOpenedException
TaskSchedulerException
TaskCanceledException
AggregateException
PingException
LockRecursionException
NullReferenceException
-
Send
public PingReply Send(java.lang.String hostNameOrAddress, int timeout) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, FormatException, SocketException, Win32Exception, OutOfMemoryException, TaskCanceledException, AggregateException, PingException, SynchronizationLockException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
FormatException
SocketException
Win32Exception
OutOfMemoryException
TaskCanceledException
AggregateException
PingException
SynchronizationLockException
-
Send
public PingReply Send(java.lang.String hostNameOrAddress, TimeSpan timeout, byte[] buffer, PingOptions options) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException, ArgumentNullException, OutOfMemoryException, SocketException, MissingMethodException, TargetInvocationException, Win32Exception, WaitHandleCannotBeOpenedException, TaskSchedulerException, TaskCanceledException, AggregateException, PingException, LockRecursionException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
IndexOutOfRangeException
FormatException
ArgumentNullException
OutOfMemoryException
SocketException
MissingMethodException
TargetInvocationException
Win32Exception
WaitHandleCannotBeOpenedException
TaskSchedulerException
TaskCanceledException
AggregateException
PingException
LockRecursionException
NullReferenceException
-
Send
public PingReply Send(java.lang.String dupParam0, TimeSpan dupParam1, JCORefOut dupParam2, PingOptions dupParam3) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException, ArgumentNullException, OutOfMemoryException, SocketException, MissingMethodException, TargetInvocationException, Win32Exception, WaitHandleCannotBeOpenedException, TaskSchedulerException, TaskCanceledException, AggregateException, PingException, LockRecursionException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
IndexOutOfRangeException
FormatException
ArgumentNullException
OutOfMemoryException
SocketException
MissingMethodException
TargetInvocationException
Win32Exception
WaitHandleCannotBeOpenedException
TaskSchedulerException
TaskCanceledException
AggregateException
PingException
LockRecursionException
NullReferenceException
-
Send
public PingReply Send(java.lang.String hostNameOrAddress) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, FormatException, SocketException, Win32Exception, OutOfMemoryException, TaskCanceledException, AggregateException, PingException, SynchronizationLockException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
FormatException
SocketException
Win32Exception
OutOfMemoryException
TaskCanceledException
AggregateException
PingException
SynchronizationLockException
-
SendAsync
public void SendAsync(IPAddress address, int timeout, byte[] buffer, PingOptions options, NetObject userToken) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, ArrayTypeMismatchException, SocketException, EventSourceException, TaskSchedulerException, OutOfMemoryException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
InvalidOperationException
PlatformNotSupportedException
ArgumentOutOfRangeException
NotSupportedException
ArrayTypeMismatchException
SocketException
EventSourceException
TaskSchedulerException
OutOfMemoryException
-
SendAsync
public void SendAsync(IPAddress dupParam0, int dupParam1, JCORefOut dupParam2, PingOptions dupParam3, NetObject dupParam4) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, NotSupportedException, ArrayTypeMismatchException, SocketException, EventSourceException, TaskSchedulerException, OutOfMemoryException
- Throws:
java.lang.Throwable
ObjectDisposedException
ArgumentNullException
ArgumentException
InvalidOperationException
PlatformNotSupportedException
ArgumentOutOfRangeException
NotSupportedException
ArrayTypeMismatchException
SocketException
EventSourceException
TaskSchedulerException
OutOfMemoryException
-
SendAsync
public void SendAsync(IPAddress address, int timeout, byte[] buffer, NetObject userToken) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, NotSupportedException, ArrayTypeMismatchException, PlatformNotSupportedException, SocketException, InvalidOperationException, TaskSchedulerException, OutOfMemoryException
-
SendAsync
public void SendAsync(IPAddress dupParam0, int dupParam1, JCORefOut dupParam2, NetObject dupParam3) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, NotSupportedException, ArrayTypeMismatchException, PlatformNotSupportedException, SocketException, InvalidOperationException, TaskSchedulerException, OutOfMemoryException
-
SendAsync
public void SendAsync(IPAddress address, int timeout, NetObject userToken) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, NotSupportedException, ArrayTypeMismatchException, PlatformNotSupportedException, SocketException, TaskSchedulerException, InvalidOperationException, OutOfMemoryException
-
SendAsync
public void SendAsync(IPAddress address, NetObject userToken) throws java.lang.Throwable, ObjectDisposedException, ArgumentNullException, ArgumentException, ArgumentOutOfRangeException, NotSupportedException, ArrayTypeMismatchException, PlatformNotSupportedException, SocketException, TaskSchedulerException, InvalidOperationException, OutOfMemoryException
-
SendAsync
public void SendAsync(java.lang.String hostNameOrAddress, int timeout, byte[] buffer, PingOptions options, NetObject userToken) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, FormatException, SocketException, EventSourceException, TaskSchedulerException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
FormatException
SocketException
EventSourceException
TaskSchedulerException
OutOfMemoryException
-
SendAsync
public void SendAsync(java.lang.String dupParam0, int dupParam1, JCORefOut dupParam2, PingOptions dupParam3, NetObject dupParam4) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, FormatException, SocketException, EventSourceException, TaskSchedulerException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
FormatException
SocketException
EventSourceException
TaskSchedulerException
OutOfMemoryException
-
SendAsync
public void SendAsync(java.lang.String hostNameOrAddress, int timeout, byte[] buffer, NetObject userToken) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ObjectDisposedException, ArrayTypeMismatchException, SocketException, TaskSchedulerException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ObjectDisposedException
ArrayTypeMismatchException
SocketException
TaskSchedulerException
OutOfMemoryException
-
SendAsync
public void SendAsync(java.lang.String dupParam0, int dupParam1, JCORefOut dupParam2, NetObject dupParam3) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ObjectDisposedException, ArrayTypeMismatchException, SocketException, TaskSchedulerException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
ArgumentNullException
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ObjectDisposedException
ArrayTypeMismatchException
SocketException
TaskSchedulerException
OutOfMemoryException
-
SendAsync
public void SendAsync(java.lang.String hostNameOrAddress, int timeout, NetObject userToken) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, FormatException, ObjectDisposedException, SocketException, TaskSchedulerException, OutOfMemoryException
-
SendAsync
public void SendAsync(java.lang.String hostNameOrAddress, NetObject userToken) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, FormatException, ObjectDisposedException, SocketException, TaskSchedulerException, OutOfMemoryException
-
SendAsyncCancel
public void SendAsyncCancel() throws java.lang.Throwable, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, ArgumentException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NullReferenceException, AggregateException, OperationCanceledException
- Throws:
java.lang.Throwable
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
ArgumentException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
NullReferenceException
AggregateException
OperationCanceledException
-
addPingCompleted
public void addPingCompleted(PingCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
removePingCompleted
public void removePingCompleted(PingCompletedEventHandler handler) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
-