UTFDataFormatException Costruttori
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
| Nome | Descrizione |
|---|---|
| UTFDataFormatException() |
Costruisce un oggetto |
| UTFDataFormatException(String) |
Costruisce un |
| UTFDataFormatException(IntPtr, JniHandleOwnership) |
Costruttore usato durante la creazione di rappresentazioni gestite di oggetti JNI; chiamato dal runtime. |
UTFDataFormatException()
Costruisce un oggetto UTFDataFormatException con null come messaggio di dettaglio dell'errore.
[Android.Runtime.Register(".ctor", "()V", "")]
public UTFDataFormatException();
- Attributi
Commenti
Costruisce un oggetto UTFDataFormatException con null come messaggio di dettaglio dell'errore.
Documentazione java per java.io.UTFDataFormatException.UTFDataFormatException().
Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dal progetto Open Source Android e usato in base ai termini descritti nella licenza Creative Commons 2.5 Attribuzione.
Si applica a
UTFDataFormatException(String)
Costruisce un UTFDataFormatException oggetto con il messaggio di dettaglio specificato.
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public UTFDataFormatException(string? s);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Java.IO.UTFDataFormatException : string -> Java.IO.UTFDataFormatException
Parametri
- s
- String
messaggio di dettaglio.
- Attributi
Commenti
Costruisce un UTFDataFormatException oggetto con il messaggio di dettaglio specificato. La stringa s può essere recuperata in un secondo momento dal java.lang.Throwable#getMessage metodo della classe java.lang.Throwable.
Documentazione java per java.io.UTFDataFormatException.UTFDataFormatException(java.lang.String).
Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dal progetto Open Source Android e usato in base ai termini descritti nella licenza Creative Commons 2.5 Attribuzione.
Si applica a
UTFDataFormatException(IntPtr, JniHandleOwnership)
Costruttore usato durante la creazione di rappresentazioni gestite di oggetti JNI; chiamato dal runtime.
protected UTFDataFormatException(IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.IO.UTFDataFormatException : nativeint * Android.Runtime.JniHandleOwnership -> Java.IO.UTFDataFormatException
Parametri
- javaReference
-
IntPtr
nativeint
Oggetto IntPtrcontenente un riferimento all'oggetto JNI (Native Interface) Java.
- transfer
- JniHandleOwnership
Oggetto JniHandleOwnershipche indica come gestire javaReference
Commenti
Le parti di questa pagina sono modifiche basate sul lavoro creato e condiviso dal progetto Open Source Android e usato in base ai termini descritti nella licenza Creative Commons 2.5 Attribuzione.