Struct BOBFileValidationError
- Namespace
- BlazOrbit.Components.Forms
- Assembly
- BlazOrbit.dll
One rejected file emitted by OnInvalid.
public readonly struct BOBFileValidationError
Constructors
BOBFileValidationError(string, long, BOBFileValidationErrorKind)
One rejected file emitted by OnInvalid.
public BOBFileValidationError(string FileName, long Size, BOBFileValidationErrorKind Kind)
Parameters
FileNamestringThe file's display name.
SizelongReported size in bytes.
KindBOBFileValidationErrorKindReason the file was rejected.
Properties
FileName
The file's display name.
public string FileName { get; init; }
Property Value
- string
Kind
Reason the file was rejected.
public BOBFileValidationErrorKind Kind { get; init; }
Property Value
Size
Reported size in bytes.
public long Size { get; init; }
Property Value
- long