Show / Hide Table of Contents

Class NotFoundResponse

404 Not Foundのレスポンス内容

Inheritance
Object
NotFoundResponse
Implements
IHttpResponse
Inherited Members
Object.Equals(Object)
Object.Equals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Object.ReferenceEquals(Object, Object)
Object.ToString()
Namespace: Pixiv.VroidSdk.Browser
Assembly: VRoidSDK.dll
Syntax
public class NotFoundResponse : 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

常にtrue

IsNetworkError

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

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

常にfalse

RawErrorMessage

エラーメッセージ

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

ResponseHeaders

レスポンスのヘッダ

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

常に404

Text

レスポンステキスト

Declaration
public string Text { get; }
Property Value
Type Description
String

Implements

IHttpResponse
In This Article
Back to top Generated by DocFX