Pergunta

O que são algumas listas escondidos comumente usados ??e objetos que devemos saber de em Sharepoint?

Foi útil?

Solução

using (SPSite site = new SPSite("http://localhost"))
using (SPWeb web = site.RootWeb)
    foreach (SPList list in web.Lists)
        Console.WriteLine("{0} - {1}", list.Title ?? "(noname)", list.RootFolder.ServerRelativeUrl);

eu recebo:

Cache Profiles - /Cache Profiles
Content and Structure Reports - /Reports List
Converted Forms - /IWConvertedForms
Documents - /Documents
Form Templates - /FormServerTemplates
Images - /PublishingImages
List Template Gallery - /_catalogs/lt
Long Running Operation Status - /Long Running Operation Status
Master Page Gallery - /_catalogs/masterpage
Notification List - /Notification Pages
Pages - /Pages
Quick Deploy Items - /Quick Deploy Items
Relationships List - /Relationships List
Reusable Content - /ReusableContent
Site Collection Documents - /SiteCollectionDocuments
Site Collection Images - /SiteCollectionImages
Site Template Gallery - /_catalogs/wt
Style Library - /Style Library
User Information List - /_catalogs/users
Variation Labels - /Variation Labels
Web Part Gallery - /_catalogs/wp
Workflow Tasks - /WorkflowTasks

ps .: Publishing habilitado, MOSS Empresa

Outras dicas

Pode não ser uma resposta terrivelmente útil, mas a minha experiência de desenvolvimento Sharepoint indicou há tantos buracos a cair com o não oculta e, ocasionalmente, até mesmo documentado listas e objetos que vagam em o território rochoso de uns escondidos está pedindo para ter problemas.

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top