Open this page in the API Guide

FileSystemEntryControllerBase Class

The REST API for performing administration tasks on a file system entry.
Inheritance Hierarchy
System.Object
  Microsoft.AspNetCore.Mvc.ControllerBase
    Dundas.BI.WebApi.Controllers.ApiControllerBase
      Dundas.BI.WebApi.Controllers.FileSystemEntryControllerBase
        Dundas.BI.WebApi.Controllers.FileController
        Dundas.BI.WebApi.Controllers.ProjectController

Namespace:  Dundas.BI.WebApi.Controllers
Assembly:  Dundas.BI.WebApi (in Dundas.BI.WebApi.dll) Version: 2.0.0.0 (25.1.0.1000)
Syntax
public abstract class FileSystemEntryControllerBase : ApiControllerBase

The FileSystemEntryControllerBase type exposes the following members.

Constructors
  NameDescription
Protected methodFileSystemEntryControllerBase
Initializes a new instance of the FileSystemEntryControllerBase class.
Top
Properties
  NameDescription
Protected propertyFileSystemService
Gets the file system service.
Top
Methods
  NameDescription
Protected methodAddToMostRecentlyUsed
Adds the given file ID to the list of recently used items.
Protected methodClearMostRecentlyUsed
Gets the most recently used files for the current user.
Protected methodCopyEntry
Copies the file system entry with the specified ID to the new location.
Protected methodEnsureCallerContext
If the current context is not already the specified context, creates a new caller context which is a clone of the specified context and sets it as the current one.
(Inherited from ApiControllerBase.)
Protected methodEnsureFormFileMultipartContent
Ensures when form files are access the content is MIME multi-part which we want.
(Inherited from ApiControllerBase.)
Protected methodEntryExists(Guid, Nullable<Guid>)
Determines whether an entry with the specified name exists in the specified folder.
Protected methodEntryExists(String, Guid, Nullable<Guid>)
Determines whether an entry with the specified name exists in the specified folder.
Protected methodFileSystemQueryHelper
Retrieves information about multiple files or folders.
Protected methodGetClientIdFromCookieOrProvided
Gets the client ID from cookie or from the provided value, which is usually from the query string.
(Inherited from ApiControllerBase.)
Protected methodGetEntryTags
Gets a list of entry tags and their usage.
Protected methodGetMostRecentlyUsed
Gets the most recently used files for the current user.
Protected methodGetService<T>
Gets the requested service.
(Inherited from ApiControllerBase.)
Protected methodGetSessionIdFromCookieHeaderOrProvided
Gets the session ID from cookie, the authorization header or from the provided value, which is usually from the query string.
(Inherited from ApiControllerBase.)
Protected methodLoadSession
Creates a new caller context associated with the specified session ID. The session is not validated.
(Inherited from ApiControllerBase.)
Protected methodMoveEntry
Moves the file or folder with the specified ID.
Protected methodQueryFileSystemEntry
Retrieves information about multiple files or folders.
Protected methodQueryFileSystemEntryCount
Retrieves the number of files and folders that match the query options.
Protected methodRenameEntry
Renames the file or folder with the specified ID.
Protected methodRequestFirstFormFile
Retrieves the first form file from the request.
(Inherited from ApiControllerBase.)
Protected methodRequestFormFiles
Retrieves the form files from the request.
(Inherited from ApiControllerBase.)
Protected methodReturnInvalidWindowsIdentityResponse
Returns the invalid windows identity response to challenge the browser.
(Inherited from ApiControllerBase.)
Protected methodRevisionQuery
Retrieves information about multiple revisions on files or folders.
Protected methodRollbackEntry
Rolls the file or folder back to the specified revision number.
Protected methodSetEntryDescription
Sets the entry description.
Protected methodSetEntryPrivileges
Sets the entry privileges.
Protected methodSetEntryTags
Sets an entry tags.
Protected methodTouchEntry(Guid, Nullable<Guid>)
Updates the last modified time of the entry with the specified ID.
Protected methodTouchEntry(Guid[], Nullable<Guid>)
Updates the last modified time of the entries with the specified IDs.
Top
See Also