Ejemplo n.º 1
0
        private static void MakeContractProperty(this PropertySchema property, string baseId)
        {
            property.BaseId = baseId;
            property.SetUsageExtensionPoint();

            property.SetLocks(Locks.Delete);
        }
Ejemplo n.º 2
0
        private static void MakeVariableProperty(this PropertySchema property)
        {
            property.SetLocks(Locks.None);

            property.BaseId = string.Empty;
            property.SetUsageGeneral();
        }