다음을 통해 공유


CallbackException Constructors

Definition

Overloads

CallbackException(IntPtr, JniHandleOwnership)
CallbackException(String, Throwable)

Constructs an exception that wraps cause thrown by a UrlRequest.Callback.

CallbackException(IntPtr, JniHandleOwnership)

protected CallbackException (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Android.Net.Http.CallbackException : nativeint * Android.Runtime.JniHandleOwnership -> Android.Net.Http.CallbackException

Parameters

javaReference
IntPtr

nativeint

Applies to

CallbackException(String, Throwable)

Constructs an exception that wraps cause thrown by a UrlRequest.Callback.

[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "", ApiSince=34)]
protected CallbackException (string? message, Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "", ApiSince=34)>]
new Android.Net.Http.CallbackException : string * Java.Lang.Throwable -> Android.Net.Http.CallbackException

Parameters

message
String

explanation of failure.

cause
Throwable

exception thrown by UrlRequest.Callback that's being wrapped. It is saved for later retrieval by the java.io.IOException#getCause getCause().

Attributes

Remarks

Constructs an exception that wraps cause thrown by a UrlRequest.Callback.

Java documentation for android.net.http.CallbackException.CallbackException(java.lang.String, java.lang.Throwable).

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