CesiumLanguageWriter.PacketCesiumWriter.WriteDescriptionPropertyReference C# (CSharp) Method

WriteDescriptionPropertyReference() public method

Writes a value for the description property as a reference value. The description property specifies an HTML description of the object.
public WriteDescriptionPropertyReference ( string identifier, string propertyName ) : void
identifier string The identifier of the object which contains the referenced property.
propertyName string The property on the referenced object.
return void
        public void WriteDescriptionPropertyReference(string identifier, string propertyName)
        {
            using (var writer = OpenDescriptionProperty())
            {
                writer.WriteReference(identifier, propertyName);
            }
        }

Same methods

PacketCesiumWriter::WriteDescriptionPropertyReference ( Reference value ) : void
PacketCesiumWriter::WriteDescriptionPropertyReference ( string value ) : void