Class GetEncodedResponseResult
public sealed record GetEncodedResponseResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<GetEncodedResponseResult>
- Inheritance
-
EmptyResultGetEncodedResponseResult
- Implements
-
IEquatable<EmptyResult>
- Inherited Members
-
EmptyResult.ToString()EmptyResult.GetHashCode()EmptyResult.Equals(EmptyResult)EmptyResult.<Clone>$()EmptyResult.AdditionalDataEmptyResult.AdditionalMessageData
Constructors
GetEncodedResponseResult(string?, long, long)
public GetEncodedResponseResult(string? Body, long OriginalSize, long EncodedSize)
Parameters
BodystringThe encoded body as a base64 string. Omitted if sizeOnly is true. (Encoded as a base64 string when passed over JSON)
OriginalSizelongSize before re-encoding.
EncodedSizelongSize after re-encoding.
Properties
Body
The encoded body as a base64 string. Omitted if sizeOnly is true. (Encoded as a base64 string when passed over JSON)
public string? Body { get; init; }
Property Value
EncodedSize
Size after re-encoding.
public long EncodedSize { get; init; }
Property Value
OriginalSize
Size before re-encoding.
public long OriginalSize { get; init; }