SenseNet.ContentRepository.Storage.Schema.SchemaWriter.DeletePropertyType C# (CSharp) Method

DeletePropertyType() public abstract method

When overridden in a derived class, deletes an unused existing PropertyType
public abstract DeletePropertyType ( PropertyType propertyType ) : void
propertyType PropertyType Unused existing PropertyType
return void
		public abstract void DeletePropertyType(PropertyType propertyType);

Usage Example

Exemplo n.º 1
0
        // -------------------------------------------------------------- Remove commands

        private static void WriteDeletePropertyType(SchemaWriter writer, PropertyType propType)
        {
            writer.DeletePropertyType(propType);
        }