Skip to main content
Tab

FileManagerSettingsDataSource.FileBinaryContentFieldName Property

Gets or sets the name of the data source field which provides file content.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v23.2.dll

NuGet Package: DevExpress.Web

Declaration

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

Property Value

Type Default Description
String String.Empty

A String value that specifies the name of the required data source field.

Property Paths

You can access this nested property as listed below:

Object Type Path to FileBinaryContentFieldName
ASPxFileManager
.SettingsDataSource .FileBinaryContentFieldName
HtmlEditorFileManagerSettingsBase
.SettingsDataSource .FileBinaryContentFieldName

Remarks

This property is a wrapper of the DataSourceFileSystemProvider.FileBinaryContentFieldName property. Refer to its description for more information.

Example

Note

For a full example, see File Manager - Database Binding or File Manager - Details View demo.

<dx:ASPxFileManager ID="fileManager" runat="server" DataSourceID="ArtsDataSource">
     <SettingsDataSource KeyFieldName="Id" ParentKeyFieldName="ParentID" NameFieldName="Name" IsFolderFieldName="IsFolder" FileBinaryContentFieldName="Data" LastWriteTimeFieldName="LastWriteTime" />
     ...
</dx:ASPxFileManager>
<ef:EntityDataSource ID="ArtsDataSource" runat="server" ContextTypeName="DevExpress.Web.Demos.DataContext" EntitySetName="Arts" StoreOriginalValuesInViewState="false" />

Example

<dx:ASPxFileManager ID="fileManager" runat="server" DataSourceID="XpoDataSource1">

     ...

     <SettingsDataSource 
          KeyFieldName="Id" 
          ParentKeyFieldName="Pid" 
          NameFieldName="Name" 
          IsFolderFieldName="IsFolder" 
          FileBinaryContentFieldName="Data" 
          LastWriteTimeFieldName="LastWriteTime" />
</dx:ASPxFileManager>
See Also