Class ErrorDetails
Represents the class for Error Details.
Inheritance
Namespace: Syncfusion.Blazor.FileManager
Assembly: Syncfusion.Blazor.dll
Syntax
public class ErrorDetails : Object
Constructors
ErrorDetails()
Declaration
public ErrorDetails()
Properties
Code
Gets or sets the error code associated with the error.
Declaration
public string Code { get; set; }
Property Value
Type |
---|
System.String |
Remarks
The error code is a unique identifier for the error that occurred. This code can be used to look up more information about the error in a database or documentation.
FileExists
Gets or sets a list of file or folder names that already exist in the current path and caused the error.
Declaration
public List<string> FileExists { get; set; }
Property Value
Type |
---|
System.Collections.Generic.List<System.String> |
Remarks
If the error occurred because a file or folder already exists in the current path, the names of those files or folders will be included in this list. If the error did not occur because of a duplicate name, this list will be empty.
Message
Gets or sets the error message associated with the error.
Declaration
public string Message { get; set; }
Property Value
Type |
---|
System.String |
Remarks
The error message is a human-readable description of the error that occurred. This message can be displayed to the user or used for logging purposes.