Show / Hide Table of Contents

Class ServerErrorResponse

Response when an exception is thrown that HTTP request processing is not being handled

Inheritance
Object
ServerErrorResponse
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 ServerErrorResponse : IHttpResponse

Properties

Data

Response byte array

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

IsHttpError

Becomes true when HTTP error occurs

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

Always true

IsNetworkError

Becomes true when network error occurs

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

Always false

RawErrorMessage

Error message

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

ResponseHeaders

HTTP response header

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

StatusCode

HTTP status code

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

Always 500

Text

Response text

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

Implements

IHttpResponse
In This Article
Back to top Generated by DocFX