Skip to main content
Tab

SharePointFileSystemProvider Class

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public class SharePointFileSystemProvider :
    OneDriveFileSystemProviderBase

Remarks

The SharePointFileSystemProvider class implements the file system provider functionality when a file manager accesses a file system retained in SharePoint. To learn more, see the SharePoint File System Provider topic.

This class can be used as an ancestor of your custom file system provider. In this case, you can override the class’s methods to provide custom implementation. To learn more, see the Custom File System Provider topic.

<dx:ASPxFileManager ID="FileManager" >
    //...
    <SettingsSharePoint 
        AccountName="FileManagerSharePointAccount" 
        TokenEndpoint="https://login.microsoftonline.com/46ec2686-1d80-6e0r-81de-57aec8e4672f/oauth2/token" 
        RedirectUri="http://localhost"
        SiteName="DemoSite" 
        SiteHostName="myteam.sharepoint.com" />
</dx:ASPxFileManager>
See Also