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

UpdateNodeTypePath() private method

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