SenseNet.ContentRepository.Storage.Schema.NodeType.InheritPropertyType C# (CSharp) 메소드

InheritPropertyType() 개인적인 메소드

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