Exemple #1
0
 /// <summary>
 /// Sets the view port meta tag asynchronous.
 /// </summary>
 /// <param name="source">The source.</param>
 public static async Task SetViewPortMetaTagAsync(this SPWebManager source) =>
 await source.SetWebPropertiesAsync(true, (properties, _) =>
 {
     const string viewPortMetaTag = "<meta name=\"viewport\" content=\"width=device-width, initial-scale=1, maximum-scale=1\" />";
     properties["seoincludecustommetatagpropertyname"] = "True";
     properties["seocustommetatagpropertyname"]        = viewPortMetaTag;
 }, true);
Exemple #2
0
 /// <summary>
 /// Sets the bing maps key asynchronous.
 /// </summary>
 /// <param name="source">The source.</param>
 /// <param name="key">The key.</param>
 public static async Task SetBingMapsKeyAsync(this SPWebManager source, string key) =>
 await source.SetWebPropertiesAsync(false, (properties, _) =>
 {
     properties["BING_MAPS_KEY"] = key;
 });