SenseNet.ContentRepository.Storage.Schema.NodeType.InheritPropertyType C# (CSharp) Method

InheritPropertyType() private method

private InheritPropertyType ( PropertyType propertyType ) : void
propertyType PropertyType
return 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)