C# Class WixSharp.Id

The unique string identifier of the Wix# project item. The Id is automatically generated by Wix# engine during the MSI build unless it is explicitly specified by a project item constructor parameter.

Id is used to "stamp" every XML element of the WiX source file produced by Wix#.

ファイルを表示 Open project: Eun/WixSharp Class Usage Examples

Public Properties

Property Type Description
Value string

Public Methods

Method Description
Equals ( object obj ) : bool

Determines whether the specified System.Object is equal to this instance.

GetHashCode ( ) : int

Returns a hash code for this instance.

Id ( string value )

Initializes a new instance of the Id class and assigns the constructor parameter specified to Id.Value .

ToString ( ) : string

Returns a System.String that represents this instance.

operator ( ) : bool

Implements the operator !=.

Method Details

Equals() public method

Determines whether the specified System.Object is equal to this instance.
The parameter is null.
public Equals ( object obj ) : bool
obj object The to compare with this instance.
return bool

GetHashCode() public method

Returns a hash code for this instance.
public GetHashCode ( ) : int
return int

Id() public method

Initializes a new instance of the Id class and assigns the constructor parameter specified to Id.Value .
public Id ( string value )
value string The string Id value.

ToString() public method

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

operator() public static method

Implements the operator !=.
public static operator ( ) : bool
return bool

Property Details

Value public_oe property

The string Id value.
public string Value
return string