ExternalResourceUIBrowseResultType Enumeration


Describes the type of external resource browsing result.
Describes the type of external resource browsing result.

Namespace: Autodesk.Revit.DB
Assembly: RevitAPI (in RevitAPI.dll) Version: 2015.0.0.0 (2015.0.0.0)
Since: 2015
Since: 2015

Syntax

C#
public enum ExternalResourceUIBrowseResultType
Visual Basic
Public Enumeration ExternalResourceUIBrowseResultType
Visual C++
public enum class ExternalResourceUIBrowseResultType

Members

Member name Description
Success There is no predefined error happened during this browse operation. The DB server can store any errors itself in this case.
FolderNotFound The specified external resource folder cannot be found by external resource server.
ResourceNotFound The specified external resource cannot be found by external resource server.

Remarks

This enum is used to describe the type of external resources browsing operation result ( the browsing operation include list folders and resources of an external server or a folder, or open an external resource in browsing dialog.) The meaning of each enum value:
  • There is no predefined error happened during this browse operation. The DB server can store any errors itself in this case.
  • FolderNotFound means the external resource folder want to browse could not be founded in external server.
  • ResourceNotFound means the external resource want to open could not be founded in external server.

See Also