SenseNet.ContentRepository.Storage.Schema.NodeType.GetAllTypes C# (CSharp) Метод

GetAllTypes() публичный Метод

public GetAllTypes ( ) : TypeCollection
Результат TypeCollection
		public TypeCollection<NodeType> GetAllTypes()
		{
			TypeCollection<NodeType> types = new TypeCollection<NodeType>(this.SchemaRoot);
			this.GetAllTypes(types);
			return types;
		}
		private void GetAllTypes(TypeCollection<NodeType> types)

Same methods

NodeType::GetAllTypes ( TypeCollection types ) : void