C# 클래스 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)
파일 보기 프로젝트 열기: Eun/WixSharp 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
Attributes FeatureAttributes
CurrentState InstallState
Description string
Name string
Parent FeatureItem
ParentName string
RequestedState InstallState
Title string
View object

공개 메소드들

메소드 설명
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.

비공개 메소드들

메소드 설명
DetectFeatureState ( Microsoft.Deployment.WindowsInstaller.Session session, string name ) : InstallState

Detects the state of the feature.

메소드 상세

FeatureItem() 공개 메소드

Initializes a new instance of the FeatureItem class.
public FeatureItem ( ) : System.Collections.Generic
리턴 System.Collections.Generic

FeatureItem() 공개 메소드

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.
리턴 System.Collections.Generic

ToString() 공개 메소드

Returns a System.String that represents this instance.
public ToString ( ) : string
리턴 string

프로퍼티 상세

Attributes 공개적으로 프로퍼티

The defines how the feature should be displayed in the feature tree.
public FeatureAttributes Attributes
리턴 FeatureAttributes

CurrentState 공개적으로 프로퍼티

The current state. Defines the InstallState of the feature before the MSI execution.
public InstallState CurrentState
리턴 InstallState

Description 공개적으로 프로퍼티

The description of the Feature
public string Description
리턴 string

Name 공개적으로 프로퍼티

The name of the Feature
public string Name
리턴 string

Parent 공개적으로 프로퍼티

The parent FeatureItem
public FeatureItem,WixSharp.UI.Forms Parent
리턴 FeatureItem

ParentName 공개적으로 프로퍼티

The name of the parent Feature
public string ParentName
리턴 string

RequestedState 공개적으로 프로퍼티

The requested state. Defines the InstallState of the feature to be achieved as the result of the MSI execution.
public InstallState RequestedState
리턴 InstallState

Title 공개적으로 프로퍼티

The title of the Feature
public string Title
리턴 string

View 공개적으로 프로퍼티

The view of the Feature. Typically a TreeNode
public object View
리턴 object