문제

What is the difference between clientContext.Site and clientContext.Web when using the Client Object Model?

도움이 되었습니까?

해결책

site returns an SP.Site object (called "Site Collection" in non-API documentation) and web returns an SP.Web object (called "Site" in non-API documentation). The web's Site is the same as site.

Different operations can be performed upon the different hierarchical objects. Either the Site or the Web will be required depending upon operation (the operations are exposed by the API) - that's all.

See Overview of Sites (aka "SP.Web") and Site Collections (aka "SP.Site") in SharePoint - for how the two different types relate.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top