Interface IOpenBiResponse
Represents a response from the server.
Inherited Members
Namespace: BiExcellence.OpenBi.Api
Assembly: BiExcellence.OpenBi.Api.dll
Syntax
public interface IOpenBiResponse : IDisposable
Properties
Code
Gets the status code. See OpenBiResponseCodes for some known codes.
Declaration
int Code { get; }
Property Value
Type | Description |
---|---|
int |
Handle
Gets the session handle.
Declaration
string? Handle { get; }
Property Value
Type | Description |
---|---|
string |
Request
Gets the request.
Declaration
IOpenBiRequest Request { get; }
Property Value
Type | Description |
---|---|
IOpenBiRequest |
Response
Gets the raw json response.
Declaration
JsonElement Response { get; }
Property Value
Type | Description |
---|---|
JsonElement |
Session
Gets the session.
Declaration
IOpenBiSession Session { get; }
Property Value
Type | Description |
---|---|
IOpenBiSession |
Version
Gets the server command API version.
Declaration
int Version { get; }
Property Value
Type | Description |
---|---|
int |