ObjectReference Element

System.Object

ObjectEntryType

WithObjectIdentityType

ObjectReference

ObjectSpecification

 

Client Declaration

Represents information that identifies an independent Content Engine object. An independent object is instantiated from a subclass of the IndependentObject class. It is addressable and has a unique identity by which it can be referenced for retrieval or update.

 

Base Element Inheritance

Attributes

Attributes Specific to .NET Clients

 

Code Example

// Create an object reference to the root folder
ObjectReference objRootFolder = new ObjectReference();

//Specify its class, object ID, and object store
objRootFolder.classId = "Folder";
objRootFolder.objectId = "{0F1E2D3C-4B5A-6978-8796-A5B4C3D2E1F0}";
objRootFolder.objectStore = "MyObjectStore";

 

XML Schema

<xsd:complexType name="ObjectReference">
   <xsd:complexContent>
      <xsd:extension base="WithObjectIdentityType"/>
   </xsd:complexContent>
</xsd:complexType>