Click or drag to resize
IReadOnlyElement Interface
A read-only AML element. This element could be an Item, property, result tag, or something else

Namespace: Innovator.Client
Assembly: Innovator.Client (in Innovator.Client.dll) Version: 2016.1.15.1759 (2016.01.15.1759)
Syntax
public interface IReadOnlyElement : ICloneable, 
	IAmlNode

The IReadOnlyElement type exposes the following members.

Properties
  NameDescription
Public propertyContext
Retrieve the context used for rendering primitive values
Public propertyExists
Returns true if this element actually exists in the underlying AML, otherwise, returns false to indicate that the element is just a null placeholder put in place to reduce unnecessary null reference checks
Public propertyName
Local XML name of the element
Public propertyParent
Retrieve the parent element
Public propertyValue
String value of the element
Top
Methods
  NameDescription
Public methodAttribute
Retrieve the attribute with the specified name
Public methodAttributes
Retrieve all attributes specified for the element
Public methodClone
Creates a new object that is a copy of the current instance.
(Inherited from ICloneable.)
Public methodElements
Retrieve all child elements
Public methodToAml
Render the node to a string
(Inherited from IAmlNode.)
Public methodToAml(XmlWriter)
Write the node to the specified XmlWriter
(Inherited from IAmlNode.)
Top
Extension Methods
  NameDescription
Public Extension MethodToXml
Renders an AML node to XML
(Defined by ItemExtensions.)
Top
See Also