Skip to main content
Tab

ASPxFileManager.CustomFileSystemProviderTypeName Property

Gets or sets the name of a custom file system provider type that is used within ASPxFileManager.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

[DefaultValue("")]
public string CustomFileSystemProviderTypeName { get; set; }

Property Value

Type Default Description
String String.Empty

A String value specifying the type name.

Remarks

ASPxFileManager allows you to implement a custom file system provider. Use the CustomFileSystemProviderTypeName property to specify a name of a provider type used within ASPxFileManager.

To learn more, see the Custom File System Provider topic.

Example

public class LinqFileSystemProvider : FileSystemProviderBase { ... }
See Also