SenseNet.Services.ContentStore.ContentStoreService.GetItem3 C# (CSharp) Method

GetItem3() public method

public GetItem3 ( string itemPath, bool withProperties, bool onlyFileChildren, int start, int limit ) : Content
itemPath string
withProperties bool
onlyFileChildren bool
start int
limit int
return Content
        public Content GetItem3(string itemPath, bool withProperties, bool onlyFileChildren, int start, int limit)
		{
			try
			{
                Node node = GetNodeById(itemPath);
				return new Content(node, withProperties, true, onlyFileChildren, false, start, limit);
			}

			catch (Exception ex) //rethrow
			{
				throw new NodeLoadException(ex.Message, ex);
			}
		}