CesiumLanguageWriter.PacketCesiumWriter.WriteDelete C# (CSharp) Method

WriteDelete() public method

Writes the value expressed as a delete, which is whether the client should delete all existing data for this object, identified by ID. If true, all other properties in this packet will be ignored.
public WriteDelete ( bool value ) : void
value bool The value.
return void
        public void WriteDelete(bool value)
        {
            const string PropertyName = DeletePropertyName;
            Output.WritePropertyName(PropertyName);
            Output.WriteValue(value);
        }