C# Class WixSharp.UI.Forms.FeatureItem

Equivalent of Microsoft.Deployment.WindowsInstaller.FeatureInfo which is read-only and doesn't work anyway (at least in WiX v3.9)
Afficher le fichier Open project: Eun/WixSharp Class Usage Examples

Méthodes publiques

Свойство Type Description
Attributes FeatureAttributes
CurrentState InstallState
Description string
Name string
Parent FeatureItem
ParentName string
RequestedState InstallState
Title string
View object

Méthodes publiques

Méthode Description
FeatureItem ( ) : System.Collections.Generic

Initializes a new instance of the FeatureItem class.

FeatureItem ( Microsoft.Deployment.WindowsInstaller.Session session, string name ) : System.Collections.Generic

Initializes a new instance of the FeatureItem class.

ToString ( ) : string

Returns a System.String that represents this instance.

Private Methods

Méthode Description
DetectFeatureState ( Microsoft.Deployment.WindowsInstaller.Session session, string name ) : InstallState

Detects the state of the feature.

Method Details

FeatureItem() public méthode

Initializes a new instance of the FeatureItem class.
public FeatureItem ( ) : System.Collections.Generic
Résultat System.Collections.Generic

FeatureItem() public méthode

Initializes a new instance of the FeatureItem class.
public FeatureItem ( Microsoft.Deployment.WindowsInstaller.Session session, string name ) : System.Collections.Generic
session Microsoft.Deployment.WindowsInstaller.Session The session.
name string The name.
Résultat System.Collections.Generic

ToString() public méthode

Returns a System.String that represents this instance.
public ToString ( ) : string
Résultat string

Property Details

Attributes public_oe property

The defines how the feature should be displayed in the feature tree.
public FeatureAttributes Attributes
Résultat FeatureAttributes

CurrentState public_oe property

The current state. Defines the InstallState of the feature before the MSI execution.
public InstallState CurrentState
Résultat InstallState

Description public_oe property

The description of the Feature
public string Description
Résultat string

Name public_oe property

The name of the Feature
public string Name
Résultat string

Parent public_oe property

The parent FeatureItem
public FeatureItem,WixSharp.UI.Forms Parent
Résultat FeatureItem

ParentName public_oe property

The name of the parent Feature
public string ParentName
Résultat string

RequestedState public_oe property

The requested state. Defines the InstallState of the feature to be achieved as the result of the MSI execution.
public InstallState RequestedState
Résultat InstallState

Title public_oe property

The title of the Feature
public string Title
Résultat string

View public_oe property

The view of the Feature. Typically a TreeNode
public object View
Résultat object