// ========================================================================================= // Constructors // ========================================================================================= /// <summary> /// Initializes a new instance of the <see cref="OAWixProject"/> class. /// </summary> /// <param name="wixProject">The node to which this project belongs.</param> public OAWixProject(WixProjectNode wixProject) : base(wixProject) { if (wixProject != null) { this.properties = new OAProperties(wixProject.NodeProperties); } }
public OANullProperty(OAProperties parent) { this.parent = parent; }
public OAProperty(OAProperties parent, PropertyInfo pi) { this.parent = parent; this.pi = pi; }
/// <summary> /// Initializes a new instance of the <see cref="OAWowProjectProperty"/> class. /// </summary> /// <param name="parent">The parent.</param> /// <param name="name">The name.</param> internal OAWowProjectProperty(OAWowProjectProperties parent, string name) { this.parent = parent; this.name = name; }