SenseNet.Portal.Page.GetAllPage C# (CSharp) Method

GetAllPage() static private method

static private GetAllPage ( ) : NodeQueryResult
return SenseNet.ContentRepository.Storage.Search.NodeQueryResult
        internal static NodeQueryResult GetAllPage()
        {
            NodeQuery query = new NodeQuery();
            query.Add(new TypeExpression(ActiveSchema.NodeTypes["Page"], true));
            return query.Execute();
        }