Interface IWebWithDetails
A SharePoint web with details reference
Namespace: PnP.Core.Admin.Model.SharePoint
Assembly: PnP.Core.Admin.dll
Syntax
public interface IWebWithDetails
  
A SharePoint web with details reference
public interface IWebWithDetails
  Description of the web
string Description { get; }
  | 
        System.String
         
  | 
    
The id of the site collection
Guid Id { get; }
  | 
        Guid
         
  | 
    
Date time when there was the last item modified
DateTime LastItemModifiedDate { get; }
  | 
        DateTime
         
  | 
    
Date time when there was the list item modified by a user
DateTime LastItemUserModifiedDate { get; }
  | 
        DateTime
         
  | 
    
Server relative url of the web
string ServerRelativeUrl { get; }
  | 
        System.String
         
  | 
    
Date time when this site collection was created
DateTime TimeCreated { get; }
  | 
        DateTime
         
  | 
    
Title of the web
string Title { get; }
  | 
        System.String
         
  | 
    
Url of the web
Uri Url { get; }
  | 
        Uri
         
  | 
    
Gets the name of the site definition or site template that was used to create the site.
string WebTemplate { get; }
  | 
        System.String
         
  | 
    
Gets the web template configuration of the site.
string WebTemplateConfiguration { get; }
  | 
        System.String
         
  |