SingletonObject Element

System.Object

PropertyType

ModifiablePropertyType

SingletonObject

 

Client Declaration

Represents a Content Engine property that holds a single Content Engine object value.

 

Element Structure

Elements

 

Base Element Inheritance

Attributes

Attributes Specific to .NET Clients

 

Code Example

// Specify and set an object-valued property for the Parent property
SingletonObject propParent = new SingletonObject();
propParent.propertyId = "Parent";
// Set its value to an object reference
propParent.Value = (ObjectEntryType)objRef;

 

XML Schema

<xsd:complexType name="SingletonObject">
   <xsd:complexContent>
      <xsd:extension base="ModifiablePropertyType">
         <xsd:sequence>
            <xsd:element name="Value" type="ObjectEntryType" minOccurs="0"/>
         </xsd:sequence>
      </xsd:extension>
   </xsd:complexContent>
</xsd:complexType>