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

UpdateNodeTypePath() private méthode

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