CertificateParsingException 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
CertificateParsingException() |
建構沒有詳細訊息的 CertificateParsingException。 |
CertificateParsingException(Throwable) |
|
CertificateParsingException(String) |
使用指定的詳細數據訊息建構 CertificateParsingException。 |
CertificateParsingException(IntPtr, JniHandleOwnership) |
建立 JNI 物件的 Managed 表示法時使用的建構函式;由運行時間呼叫。 |
CertificateParsingException(String, Throwable) |
|
CertificateParsingException()
建構沒有詳細訊息的 CertificateParsingException。
[Android.Runtime.Register(".ctor", "()V", "")]
public CertificateParsingException ();
- 屬性
備註
建構沒有詳細訊息的 CertificateParsingException。 詳細訊息是描述此特定例外狀況的字串。
的 java.security.cert.CertificateParsingException.CertificateParsingException()
Java 檔。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
CertificateParsingException(Throwable)
CertificateParsingException
使用指定的原因和的詳細數據訊息建立(cause==null ? null : cause.toString())
(通常包含的 類別和詳細數據訊息 cause
。
[Android.Runtime.Register(".ctor", "(Ljava/lang/Throwable;)V", "")]
public CertificateParsingException (Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/Throwable;)V", "")>]
new Java.Security.Cert.CertificateParsingException : Java.Lang.Throwable -> Java.Security.Cert.CertificateParsingException
參數
- cause
- Throwable
原因(此方法稍後會儲存以供擷取 #getCause()
)。 (允許一個 null
值,並指出原因不存在或未知。
- 屬性
備註
CertificateParsingException
使用指定的原因和的詳細數據訊息(cause==null ? null : cause.toString())
建立 ,其通常包含的類別和詳細數據訊息cause
。
已在1.5中新增。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
CertificateParsingException(String)
使用指定的詳細數據訊息建構 CertificateParsingException。
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")]
public CertificateParsingException (string? message);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;)V", "")>]
new Java.Security.Cert.CertificateParsingException : string -> Java.Security.Cert.CertificateParsingException
參數
- message
- String
詳細資料訊息。
- 屬性
備註
使用指定的詳細數據訊息建構 CertificateParsingException。 詳細訊息是描述此特定例外狀況的字串。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
CertificateParsingException(IntPtr, JniHandleOwnership)
建立 JNI 物件的 Managed 表示法時使用的建構函式;由運行時間呼叫。
protected CertificateParsingException (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Security.Cert.CertificateParsingException : nativeint * Android.Runtime.JniHandleOwnership -> Java.Security.Cert.CertificateParsingException
參數
- transfer
- JniHandleOwnership
JniHandleOwnership,指出如何處理javaReference
備註
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。
適用於
CertificateParsingException(String, Throwable)
CertificateParsingException
使用指定的詳細資料訊息與原因建立 。
[Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "")]
public CertificateParsingException (string? message, Java.Lang.Throwable? cause);
[<Android.Runtime.Register(".ctor", "(Ljava/lang/String;Ljava/lang/Throwable;)V", "")>]
new Java.Security.Cert.CertificateParsingException : string * Java.Lang.Throwable -> Java.Security.Cert.CertificateParsingException
參數
- message
- String
詳細數據訊息(此方法稍後會儲存以供擷取 #getMessage()
)。
- cause
- Throwable
原因(此方法稍後會儲存以供擷取 #getCause()
)。 (允許一個 null
值,並指出原因不存在或未知。
- 屬性
備註
CertificateParsingException
使用指定的詳細資料訊息與原因建立 。
已在1.5中新增。
此頁面的部分是根據 Android 開放原始碼專案所建立和共用的工作進行修改,並根據 Creative Commons 2.5 屬性授權中所述的詞彙使用。