Interface IBrandingManager
Enables branding changes for the site (the options that appear under "change the look" under the gear icon in SharePoint)
Namespace: PnP.Core.Model.SharePoint
Assembly: PnP.Core.dll
Syntax
public interface IBrandingManager
Enables branding changes for the site (the options that appear under "change the look" under the gear icon in SharePoint)
public interface IBrandingManager
Lists the available themes for this web
List<ITheme> GetAvailableThemes()
|
PnP.Core.Model.SharePoint.List<ITheme>
List of IThemeinstances |
Lists the available themes for this web
Task<List<ITheme>> GetAvailableThemesAsync()
|
Task<PnP.Core.Model.SharePoint.List<ITheme>>
List of IThemeinstances |
Lists the available themes for this web
IEnumerableBatchResult<ITheme> GetAvailableThemesBatch()
|
IEnumerableBatchResult<ITheme>
List of IThemeinstances |
Lists the available themes for this web
IEnumerableBatchResult<ITheme> GetAvailableThemesBatch(Batch batch)
|
Batch
batch
Batch to add this request to |
|
IEnumerableBatchResult<ITheme>
List of IThemeinstances |
Lists the available themes for this web
Task<IEnumerableBatchResult<ITheme>> GetAvailableThemesBatchAsync()
|
Task<IEnumerableBatchResult<ITheme>>
List of IThemeinstances |
Lists the available themes for this web
Task<IEnumerableBatchResult<ITheme>> GetAvailableThemesBatchAsync(Batch batch)
|
Batch
batch
Batch to add this request to |
|
Task<IEnumerableBatchResult<ITheme>>
List of IThemeinstances |
Gets the site's chrome (header/footer/navigation) options
IChromeOptions GetChromeOptions()
|
IChromeOptions
Site's IChromeOptions |
Gets the site's chrome (header/footer/navigation) options
Task<IChromeOptions> GetChromeOptionsAsync()
|
Task<IChromeOptions>
Site's IChromeOptions |
Gets the site's chrome (header/footer/navigation) options
IBatchSingleResult<IChromeOptions> GetChromeOptionsBatch()
|
IBatchSingleResult<IChromeOptions>
Site's IChromeOptions |
Gets the site's chrome (header/footer/navigation) options
IBatchSingleResult<IChromeOptions> GetChromeOptionsBatch(Batch batch)
|
Batch
batch
Batch to add this request to |
|
IBatchSingleResult<IChromeOptions>
Site's IChromeOptions |
Gets the site's chrome (header/footer/navigation) options
Task<IBatchSingleResult<IChromeOptions>> GetChromeOptionsBatchAsync()
|
Task<IBatchSingleResult<IChromeOptions>>
Site's IChromeOptions |
Gets the site's chrome (header/footer/navigation) options
Task<IBatchSingleResult<IChromeOptions>> GetChromeOptionsBatchAsync(Batch batch)
|
Batch
batch
Batch to add this request to |
|
Task<IBatchSingleResult<IChromeOptions>>
Site's IChromeOptions |
Sets the site's chrome (header/footer/navigation) options
void SetChromeOptions(IChromeOptions chromeOptions)
|
IChromeOptions
chromeOptions
Site chrome options to apply |
Sets the site's chrome (header/footer/navigation) options
Task SetChromeOptionsAsync(IChromeOptions chromeOptions)
|
IChromeOptions
chromeOptions
Site chrome options to apply |
|
Task
|
Sets the site's chrome (header/footer/navigation) options
void SetChromeOptionsBatch(IChromeOptions chromeOptions)
|
IChromeOptions
chromeOptions
Site chrome options to apply |
Sets the site's chrome (header/footer/navigation) options
void SetChromeOptionsBatch(Batch batch, IChromeOptions chromeOptions)
|
Batch
batch
Batch to add this request to |
|
IChromeOptions
chromeOptions
Site chrome options to apply |
Sets the site's chrome (header/footer/navigation) options
Task SetChromeOptionsBatchAsync(IChromeOptions chromeOptions)
|
IChromeOptions
chromeOptions
Site chrome options to apply |
|
Task
|
Sets the site's chrome (header/footer/navigation) options
Task SetChromeOptionsBatchAsync(Batch batch, IChromeOptions chromeOptions)
|
Batch
batch
Batch to add this request to |
|
IChromeOptions
chromeOptions
Site chrome options to apply |
|
Task
|
Sets a an out of the box theme
void SetTheme(SharePointTheme theme)
|
SharePointTheme
theme
Theme to apply |
Sets a custom theme
Task SetThemeAsync(ITheme theme)
|
ITheme
theme
Theme to apply |
|
Task
|
Sets a an out of the box theme
Task SetThemeAsync(SharePointTheme theme)
|
SharePointTheme
theme
Theme to apply |
|
Task
|
Sets a custom theme
void SetThemeBatch(ITheme theme)
|
ITheme
theme
Theme to apply |
Sets a an out of the box theme
void SetThemeBatch(SharePointTheme theme)
|
SharePointTheme
theme
Theme to apply |
Sets a custom theme
void SetThemeBatch(Batch batch, ITheme theme)
|
Batch
batch
Batch to add this request to |
|
ITheme
theme
Theme to apply |
Sets a an out of the box theme
void SetThemeBatch(Batch batch, SharePointTheme theme)
|
Batch
batch
Batch to add this request to |
|
SharePointTheme
theme
Theme to apply |
Sets a custom theme
Task SetThemeBatchAsync(ITheme theme)
|
ITheme
theme
Theme to apply |
|
Task
|
Sets a an out of the box theme
Task SetThemeBatchAsync(SharePointTheme theme)
|
SharePointTheme
theme
Theme to apply |
|
Task
|
Sets a custom theme
Task SetThemeBatchAsync(Batch batch, ITheme theme)
|
Batch
batch
Batch to add this request to |
|
ITheme
theme
Theme to apply |
|
Task
|
Sets a an out of the box theme
Task SetThemeBatchAsync(Batch batch, SharePointTheme theme)
|
Batch
batch
Batch to add this request to |
|
SharePointTheme
theme
Theme to apply |
|
Task
|