LoadOperationType Enumeration


An enum indicating whether a resource load operation was triggered by a user action or an automatic process.

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

Syntax

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

Members

Member name Description
Automatic The load operation was triggered automatically by another operation.
Explicit The load operation was triggered by an explicit reload action on the part of the user.

Remarks

This enum is provided so that an external resource server can decide how much feedback it wishes to provide to the user.

For example, Revit automatically loads all resources on file open. This may cause many external resources to load at once. The server may wish to provide truncated error messages.

Reload() and LoadFrom() operations from the API are considered to be LoadOperationType.Explicit.

See Also