UnsupportedCallbackException 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
UnsupportedCallbackException(ICallback) |
Constructs a |
UnsupportedCallbackException(ICallback, String) |
Constructs a UnsupportedCallbackException with the specified detail message. |
UnsupportedCallbackException(IntPtr, JniHandleOwnership) |
A constructor used when creating managed representations of JNI objects; called by the runtime. |
UnsupportedCallbackException(ICallback)
Constructs a UnsupportedCallbackException
with no detail message.
[Android.Runtime.Register(".ctor", "(Ljavax/security/auth/callback/Callback;)V", "")]
public UnsupportedCallbackException (Javax.Security.Auth.Callback.ICallback? callback);
[<Android.Runtime.Register(".ctor", "(Ljavax/security/auth/callback/Callback;)V", "")>]
new Javax.Security.Auth.Callback.UnsupportedCallbackException : Javax.Security.Auth.Callback.ICallback -> Javax.Security.Auth.Callback.UnsupportedCallbackException
Parameters
- callback
- ICallback
the unrecognized Callback
.
- Attributes
Remarks
Constructs a UnsupportedCallbackException
with no detail message.
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
UnsupportedCallbackException(ICallback, String)
Constructs a UnsupportedCallbackException with the specified detail message.
[Android.Runtime.Register(".ctor", "(Ljavax/security/auth/callback/Callback;Ljava/lang/String;)V", "")]
public UnsupportedCallbackException (Javax.Security.Auth.Callback.ICallback? callback, string? msg);
[<Android.Runtime.Register(".ctor", "(Ljavax/security/auth/callback/Callback;Ljava/lang/String;)V", "")>]
new Javax.Security.Auth.Callback.UnsupportedCallbackException : Javax.Security.Auth.Callback.ICallback * string -> Javax.Security.Auth.Callback.UnsupportedCallbackException
Parameters
- callback
- ICallback
the unrecognized Callback
. <p>
- msg
- String
the detail message.
- Attributes
Remarks
Constructs a UnsupportedCallbackException with the specified detail message. A detail message is a String that describes this particular exception.
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
UnsupportedCallbackException(IntPtr, JniHandleOwnership)
A constructor used when creating managed representations of JNI objects; called by the runtime.
protected UnsupportedCallbackException (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Javax.Security.Auth.Callback.UnsupportedCallbackException : nativeint * Android.Runtime.JniHandleOwnership -> Javax.Security.Auth.Callback.UnsupportedCallbackException
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.