Skip to main content
Tab

ASPxFileManager.SettingsSharePoint Property

Gets settings allowing the file manager to access a file system retained in SharePoint storage.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

public FileManagerSharePointProviderSettings SettingsSharePoint { get; }

Property Value

Type Description
FileManagerSharePointProviderSettings

SharePoint provider settings.

Remarks

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

Note

For security reasons, the settings available from the SettingsSharePoint property are not saved in the ViewState.

<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