NetworkException 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
NetworkException(IntPtr, JniHandleOwnership) | |
NetworkException(String, Throwable) |
Constructs an exception that is caused by a network error. |
NetworkException(IntPtr, JniHandleOwnership)
protected NetworkException (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Net.Http.NetworkException : nativeint * Android.Runtime.JniHandleOwnership -> Android.Net.Http.NetworkException
Parameters
- javaReference
-
IntPtr
nativeint
- transfer
- JniHandleOwnership
Applies to
NetworkException(String, Throwable)
Constructs an exception that is caused by a network error.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "", ApiSince=34)]
public NetworkException (string? message, Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "", ApiSince=34)>]
new Android.Net.Http.NetworkException : string * Java.Lang.Throwable -> Android.Net.Http.NetworkException
Parameters
- message
- String
explanation of failure.
- cause
- Throwable
the cause (which is saved for later retrieval by the java.io.IOException#getCause getCause()
method). A null value is permitted, and indicates
that the cause is nonexistent or unknown.
- Attributes
Remarks
Constructs an exception that is caused by a network error.
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.