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

UpdateNodeTypePath() 개인적인 메소드

private UpdateNodeTypePath ( ) : void
리턴 void
		private void UpdateNodeTypePath()
		{
			_nodeTypePath = _parent == null ? this.Name : String.Concat(_parent.NodeTypePath, "/", this.Name);
			foreach (NodeType nodeType in this.Children)
				nodeType.UpdateNodeTypePath();
		}