Skip to main content

Definition

Assembly: CloudNimble.EasyAF.Http.dll Namespace: CloudNimble.EasyAF.Http.OData Inheritance: System.Object

Syntax

CloudNimble.EasyAF.Http.OData.ODataV4InnerError

Summary

Represents implementation-specific debugging information for OData errors. Contains detailed error information such as exception details, stack traces, and nested errors.

Constructors

.ctor

Syntax

public ODataV4InnerError()

.ctor Inherited

Inherited from object

Syntax

public Object()

Properties

InnerError

Gets or sets nested inner error information for chained exceptions. This property allows for hierarchical error reporting when multiple exceptions are involved.

Syntax

public CloudNimble.EasyAF.Http.OData.ODataV4InnerError InnerError { get; set; }

Property Value

Type: CloudNimble.EasyAF.Http.OData.ODataV4InnerError

Message

Gets or sets the detailed error message providing implementation-specific information about the error. This message is typically more technical than the outer error message.

Syntax

public string Message { get; set; }

Property Value

Type: string

StackTrace

Gets or sets the stack trace information for debugging purposes. This property provides detailed execution path information when the error occurred.

Syntax

public string StackTrace { get; set; }

Property Value

Type: string

TypeName

Gets or sets the type name of the exception that caused the error. This property helps identify the specific type of error that occurred on the server.

Syntax

public string TypeName { get; set; }

Property Value

Type: string

Methods

Equals Inherited Virtual

Inherited from object

Syntax

public virtual bool Equals(object obj)

Parameters

NameTypeDescription
objobject?-

Returns

Type: bool

Equals Inherited

Inherited from object

Syntax

public static bool Equals(object objA, object objB)

Parameters

NameTypeDescription
objAobject?-
objBobject?-

Returns

Type: bool

GetHashCode Inherited Virtual

Inherited from object

Syntax

public virtual int GetHashCode()

Returns

Type: int

GetType Inherited

Inherited from object

Syntax

public System.Type GetType()

Returns

Type: System.Type

MemberwiseClone Inherited

Inherited from object

Syntax

protected internal object MemberwiseClone()

Returns

Type: object

ReferenceEquals Inherited

Inherited from object

Syntax

public static bool ReferenceEquals(object objA, object objB)

Parameters

NameTypeDescription
objAobject?-
objBobject?-

Returns

Type: bool

ToString Inherited Virtual

Inherited from object

Syntax

public virtual string ToString()

Returns

Type: string?