Show / Hide Table of Contents

Interface IHttpResponse

HTTPレスポンスインターフェース

Namespace: Pixiv.VroidSdk.Networking
Assembly: Pixiv.VroidSdk.dll
Syntax
public interface IHttpResponse

Properties

Data

レスポンスのバイト配列

Declaration
byte[] Data { get; }
Property Value
Type Description
Byte[]

IsHttpError

HTTPエラーが発生した場合はtrueとなる

Declaration
bool IsHttpError { get; }
Property Value
Type Description
Boolean

IsNetworkError

ネットワークエラーが発生した場合はtrueとなる

Declaration
bool IsNetworkError { get; }
Property Value
Type Description
Boolean

RawErrorMessage

エラーメッセージ

Declaration
string RawErrorMessage { get; }
Property Value
Type Description
String

ResponseHeaders

レスポンスのヘッダ

Declaration
Dictionary<string, string> ResponseHeaders { get; }
Property Value
Type Description
Dictionary<String, String>

StatusCode

HTTPステータスコード

Declaration
int StatusCode { get; }
Property Value
Type Description
Int32

Text

レスポンステキスト

Declaration
string Text { get; }
Property Value
Type Description
String
In This Article
Back to top Generated by DocFX