Table of Contents

Class GrpcCallResult

Namespace
Virtufin.Api.Services
Assembly
Virtufin.Api.dll

Represents the result of a gRPC call invocation.

public class GrpcCallResult
Inheritance
GrpcCallResult
Inherited Members

Properties

Data

public string? Data { get; set; }

Property Value

string

FailedBeforeDispatch

True when the call failed before the request reached the backend (descriptor load, channel acquisition). Only these are safe to retry: nothing distinguishes idempotent methods here, so replaying a call that may already have been applied is not acceptable.

public bool FailedBeforeDispatch { get; set; }

Property Value

bool

Message

public string? Message { get; set; }

Property Value

string

ResponseDataBytes

public byte[]? ResponseDataBytes { get; set; }

Property Value

byte[]

StatusCode

public string? StatusCode { get; set; }

Property Value

string

Success

public bool Success { get; set; }

Property Value

bool