TaskUILifetimeHintAttribute Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines a task lifetime attribute that specifies how expensive a user interface is to re-create.
public ref class TaskUILifetimeHintAttribute sealed : Attribute
[System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false)]
public sealed class TaskUILifetimeHintAttribute : Attribute
[<System.AttributeUsage(System.AttributeTargets.Class, AllowMultiple=false)>]
type TaskUILifetimeHintAttribute = class
inherit Attribute
Public NotInheritable Class TaskUILifetimeHintAttribute
Inherits Attribute
- Inheritance
-
TaskUILifetimeHintAttribute
- Attributes
Remarks
In Integration Services, this attribute allows you to specify how expensive it is to recreate a specific user interface. For example, if a user interface displays a drop-down list with only five fields, all obtained from the local computer, the user interface may be fairly fast and inexpensive to process. However, if a drop-down list in a user interface contains information that was gathered from a remote server, or from across a network that was slow, the user interface may be expensive and time-consuming to re-create. To keep the user interface in memory until the package designer is closed, set the TaskUILifetimeHint property to RecreationExpensive. To dispose of the user interface as soon as the user closes the dialog, set the TaskUILifetimeHint property to RecreationInexpensive.
Constructors
TaskUILifetimeHintAttribute(TaskUILifetimeHint) |
Initializes a new instance of the TaskUILifetimeHintAttribute class. |
Properties
TaskUILifetimeHint |
Provides an estimate, stored as a lifetime hint, about how expensive it is to re-create a user interface. |