BindException Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
BindException() |
Construct a new BindException with no detailed message. |
BindException(String) |
Constructs a new BindException with the specified detail message as to why the bind error occurred. |
BindException(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
BindException()
Construct a new BindException with no detailed message.
[Android.Runtime.Register(".ctor", "()V", "")]
public BindException ();
- Attributes
Remarks
Construct a new BindException with no detailed message.
Java documentation for java.net.BindException.BindException()
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
BindException(String)
Constructs a new BindException with the specified detail message as to why the bind error occurred.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public BindException (string? msg);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Java.Net.BindException : string -> Java.Net.BindException
Parameters
- msg
- String
the detail message
- Attributes
Remarks
Constructs a new BindException with the specified detail message as to why the bind error occurred. A detail message is a String that gives a specific description of this error.
Java documentation for java.net.BindException.BindException(java.lang.String)
.
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.
Applies to
BindException(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected BindException (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Net.BindException : nativeint * Android.Runtime.JniHandleOwnership -> Java.Net.BindException
Parameters
- transfer
- JniHandleOwnership
A JniHandleOwnershipindicating how to handle javaReference
Remarks
Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.