コード例 #1
0
        /// <summary>
        /// Initializes a new instance of the <see cref="ListCollection"/> class.
        /// </summary>
        /// <param name="context">The context.</param>
        /// <param name="webUrl">The web URL.</param>
        public ListCollection([NotNull] SpContext context, [NotNull] Uri webUrl)
        {
            Assert.ArgumentNotNull(context, "context");
            Assert.ArgumentNotNull(webUrl, "webUrl");

            this.Connector = new ListCollectionConnector(context, webUrl);
            this.Context   = context;
            this.WebUrl    = webUrl;
        }
コード例 #2
0
        protected override List <BaseList> GetEntities()
        {
            if (this.Entities == null)
            {
                EntityValues listValuesCollection = new ListCollectionConnector(this.Context, this.WebUrl).GetLists();

                this.Entities = new List <BaseList>();
                foreach (EntityValues listValues in listValuesCollection["Lists"])
                {
                    this.Entities.Add(ListFactory.CreateListObject(listValues, this.WebUrl, this.Context));
                }
            }

            return(this.Entities);
        }