Table of Contents

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

FileName string

The file's display name.

Size long

Reported size in bytes.

Kind BOBFileValidationErrorKind

Reason 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

BOBFileValidationErrorKind

Size

Reported size in bytes.

public long Size { get; init; }

Property Value

long