Class ReadResult
public sealed record ReadResult : EmptyResult, IEquatable<EmptyResult>, IEquatable<ReadResult>
- Inheritance
-
EmptyResultReadResult
- Implements
-
IEquatable<EmptyResult>
- Inherited Members
-
EmptyResult.ToString()EmptyResult.GetHashCode()EmptyResult.Equals(EmptyResult)EmptyResult.<Clone>$()EmptyResult.AdditionalDataEmptyResult.AdditionalMessageData
Constructors
ReadResult(bool?, string, bool)
public ReadResult(bool? Base64Encoded, string Data, bool Eof)
Parameters
Base64Encodedbool?Set if the data is base64-encoded
DatastringData that were read.
EofboolSet if the end-of-file condition occurred while reading.
Properties
Base64Encoded
Set if the data is base64-encoded
public bool? Base64Encoded { get; init; }
Property Value
- bool?
Data
Data that were read.
public string Data { get; init; }
Property Value
Eof
Set if the end-of-file condition occurred while reading.
public bool Eof { get; init; }