3 writes to propertyElement
Microsoft.Build.Engine (3)
Properties\BuildProperty.cs (3)
223this.propertyElement = propertyElement; 276this.propertyElement = ownerDocument.CreateElement(propertyName, XMakeAttributes.defaultXmlNamespace); 293this.propertyElement = null;
14 references to propertyElement
Microsoft.Build.Engine (14)
Properties\BuildProperty.cs (14)
279Utilities.SetXmlNodeInnerContents(this.propertyElement, propertyValue); 284this.propertyValue = Utilities.GetXmlNodeInnerContents(this.propertyElement); 368if (propertyElement != null) 371return this.propertyElement.Name; 439if (this.propertyElement != null) 442Utilities.SetXmlNodeInnerContents(this.propertyElement, value); 447this.propertyValue = Utilities.GetXmlNodeInnerContents(this.propertyElement); 533ErrorUtilities.VerifyThrowInvalidOperation(this.propertyElement != null, 540this.conditionAttribute = ProjectXmlUtilities.SetOrRemoveAttribute(propertyElement, XMakeAttributes.condition, value); 568return this.propertyElement; 610this.finalValueEscaped = expander.ExpandAllIntoStringLeaveEscaped(this.Value, this.propertyElement); 649if (this.propertyElement != null) 658newPropertyElement = (XmlElement)this.propertyElement.Clone(); 662newPropertyElement = this.propertyElement;