aspnet-devexpress-dot-web-dot-aspxfilemanager-d147bc3b.md
Gets or sets the name of a custom file system provider type that is used within ASPxFileManager.
Namespace : DevExpress.Web
Assembly : DevExpress.Web.v25.2.dll
NuGet Package : DevExpress.Web
[DefaultValue("")]
public string CustomFileSystemProviderTypeName { get; set; }
<DefaultValue("")>
Public Property CustomFileSystemProviderTypeName As String
| Type | Default | Description |
|---|---|---|
| String | String.Empty |
A String value specifying the type name.
|
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.
public class LinqFileSystemProvider : FileSystemProviderBase { ... }
<dx:ASPxFileManager ID="ASPxFileManager1" runat="server"
CustomFileSystemProviderTypeName="LinqFileSystemProvider" >
...
</dx:ASPxFileManager>
See Also