Interface ISiteCollectionWithDetails
A SharePoint site collection with details reference
Inherited Members
Namespace: PnP.Core.Admin.Model.SharePoint
Assembly: PnP.Core.Admin.dll
Syntax
public interface ISiteCollectionWithDetails : ISiteCollection
  
A SharePoint site collection with details reference
public interface ISiteCollectionWithDetails : ISiteCollection
  The user that created this site collection
string CreatedBy { get; }
  | 
        System.String
         
  | 
    
Indicates whether this site collection can be externally shared via an email
bool ShareByEmailEnabled { get; }
  | 
        System.Boolean
         
  | 
    
Indicates whether this site collection can be externally shared via a link
bool ShareByLinkEnabled { get; }
  | 
        System.Boolean
         
  | 
    
Returns the email address of teh site collection owner
string SiteOwnerEmail { get; }
  | 
        System.String
         
  | 
    
Returns the name of the site collection owner
string SiteOwnerName { get; }
  | 
        System.String
         
  | 
    
The storage quota in bytes for this site collection
long StorageQuota { get; }
  | 
        System.Int64
         
  | 
    
The storage quota used for this site collection
long StorageUsed { get; }
  | 
        System.Int64
         
  | 
    
The id of the applied template (if any)
int TemplateId { get; }
  | 
        System.Int32
         
  | 
    
The name of the applied template
string TemplateName { get; }
  | 
        System.String
         
  | 
    
Date time when this site collection was created
DateTime TimeCreated { get; }
  | 
        DateTime
         
  |