UploadControlGoogleDriveSettings Class
Contains settings that allow you to connect the Upload Control to Google Drive.
Namespace: DevExpress.Web
Assembly: DevExpress.Web.v24.2.dll
Declaration
Related API Members
The following members return UploadControlGoogleDriveSettings objects:
Library | Related API Members |
---|---|
ASP.NET Web Forms Controls | ASPxUploadControl.GoogleDriveSettings |
ASP.NET MVC Extensions | UploadControlBinderSettings.GoogleDriveSettings |
UploadControlSettings.GoogleDriveSettings |
Remarks
Follow the steps below to connect the Upload Control to Google Drive:
- Call the RegisterGoogleDrive method in the Global.asax file.
- Set the Upload Control’s UploadStorage property to
GoogleDrive
. - Assign a Google Drive account’s name to the GoogleDriveSettings.AccountName property.
The following example demonstrates how to connect the Upload Control to Google Drive:
void Application_Start(object sender, EventArgs e) {
DevExpress.Web.AccountManager.RegisterGoogleDrive("YourGoogleDriveAccount", "YourEmail", "YourPrivateKey");
}
<dx:ASPxUploadControl ID="UploadControl" runat="server" UploadStorage="GoogleDrive" ShowUploadButton="True" >
<GoogleDriveSettings AccountName="YourGoogleDriveAccount" />
</dx:ASPxUploadControl>
Once the Upload Control uploads a file to cloud storage, you can use the key name of this file to access it. To obtain a file key name, use the FileNameInStorage property of an UploadedFile object.
Inheritance
Object
StateManager
PropertiesBase
UploadControlUploadStorageSettingsBase
UploadControlGoogleDriveSettings
See Also