NetBuild.Tfs.TfsClient.GetAllItems C# (CSharp) Method

GetAllItems() public method

public GetAllItems ( string path ) : List
path string
return List
		public List<ItemHeader> GetAllItems(string path)
		{
			var items = m_server.GetItems(path, VersionSpec.Latest, RecursionType.Full);
			return items
				.Items
				.Select(i => new ItemHeader(i))
				.ToList();
		}
	}