Class ServerErrorResponse
HTTPリクエスト処理中にハンドルしていない例外がスローされた時のレスポンス
Implements
Inherited Members
Namespace: Pixiv.VroidSdk.Browser
Assembly: VRoidSDK.dll
Syntax
public class ServerErrorResponse : IHttpResponse
Properties
Data
レスポンスのバイト配列
Declaration
public byte[] Data { get; }
Property Value
Type | Description |
---|---|
Byte[] |
IsHttpError
HTTPエラーが発生した場合はtrue
となる
Declaration
public bool IsHttpError { get; }
Property Value
Type | Description |
---|---|
Boolean | 常に |
IsNetworkError
ネットワークエラーが発生した場合はtrue
となる
Declaration
public bool IsNetworkError { get; }
Property Value
Type | Description |
---|---|
Boolean | 常に |
RawErrorMessage
エラーメッセージ
Declaration
public string RawErrorMessage { get; }
Property Value
Type | Description |
---|---|
String |
ResponseHeaders
HTTPレスポンスヘッダ
Declaration
public Dictionary<string, string> ResponseHeaders { get; }
Property Value
Type | Description |
---|---|
Dictionary<String, String> |
StatusCode
HTTPステータスコード
Declaration
public int StatusCode { get; }
Property Value
Type | Description |
---|---|
Int32 | 常に |
Text
レスポンステキスト
Declaration
public string Text { get; }
Property Value
Type | Description |
---|---|
String |