SenseNet.ContentRepository.Storage.Schema.NodeType.InheritPropertyType C# (CSharp) Méthode

InheritPropertyType() private méthode

private InheritPropertyType ( PropertyType propertyType ) : void
propertyType PropertyType
Résultat void
		private void InheritPropertyType(PropertyType propertyType)
		{
			foreach (NodeType childSet in this.Children)
			{
				if (!childSet.PropertyTypes.Contains(propertyType))
				{
					childSet.PropertyTypes.Add(propertyType);
					childSet.InheritPropertyType(propertyType);
				}
			}
		}
		internal override void RemovePropertyType(PropertyType propertyType)