Class GrpcCallResult
Represents the result of a gRPC call invocation.
public class GrpcCallResult
- Inheritance
-
GrpcCallResult
- Inherited Members
Properties
Data
public string? Data { get; set; }
Property Value
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
Message
public string? Message { get; set; }
Property Value
ResponseDataBytes
public byte[]? ResponseDataBytes { get; set; }
Property Value
- byte[]
StatusCode
public string? StatusCode { get; set; }
Property Value
Success
public bool Success { get; set; }