Deployment Tools Foundation
ViewModifyMode Enumeration
Deployment Tools Foundation Namespaces ► Microsoft.Deployment.WindowsInstaller ► ViewModifyMode
Specifies the modify mode for Modify(ViewModifyMode, Record).
Declaration Syntax
C# | Visual Basic | Visual C++ |
public enum ViewModifyMode
Public Enumeration ViewModifyMode
public enum class ViewModifyMode
Members
Member | Description |
---|---|
Seek |
Refreshes the information in the supplied record without changing the position
in the result set and without affecting subsequent fetch operations.
|
Refresh |
Refreshes the data in a Record.
|
Insert |
Inserts a Record into the view.
|
Update |
Updates the View with new data from the Record.
|
Assign |
Updates or inserts a Record into the View.
|
Replace |
Updates or deletes and inserts a Record into the View.
|
Merge |
Inserts or validates a record.
|
Delete |
Deletes a Record from the View.
|
InsertTemporary |
Inserts a Record into the View. The inserted data is not persistent.
|
Validate |
Validates a record.
|
ValidateNew |
Validates a new record.
|
ValidateField |
Validates fields of a fetched or new record. Can validate one or more fields of an incomplete record.
|
ValidateDelete |
Validates a record that will be deleted later.
|