This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Enables caching by setting cache-control to private (instead of no-cache). | |
/// By default also enables etags, and sets cache-control max-age to 60 seconds. | |
/// </summary> | |
public class EnableApiCaching : ActionFilterAttribute | |
{ | |
private readonly TimeSpan _maxAge; | |
private readonly bool _enableEntityTagCaching; | |
/// <summary> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Enables caching by setting cache-control to private (instead of no-cache). | |
/// By default also enables etags, and sets cache-control max-age to 60 seconds. | |
/// </summary> | |
public class GzipActionFilter : ActionFilterAttribute | |
{ | |
public override async Task OnActionExecutedAsync(HttpActionExecutedContext context, CancellationToken cancellationToken) | |
{ | |
if (context.Request.Headers.AcceptEncoding.All(i => i.Value != "gzip")) return; | |
if (context.Response.Content == null) return; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$author = Read-Host 'Commit author name?'; | |
$sinceDate = Read-Host 'Get commits since (date)'; | |
$filename = "commits.log"; | |
$nl = [Environment]::NewLine; | |
Write-Host "log will be saved as $filename" -foreground "magenta"; | |
del $filename; | |
ls | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[DebuggerDisplay("PropertyName={PropertyName}: '{OriginalValue}' - '{NewValue}'")] | |
public class Difference | |
{ | |
private readonly string _propertyName; | |
private readonly object _originalValue; | |
private readonly object _newValue; | |
public Difference(string propertyName, object originalValue, object newValue) | |
{ | |
_propertyName = propertyName; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class CacheUtility | |
{ | |
public static T Get<T>(string key) where T : new() | |
{ | |
return (T)MemoryCache.Default.Get(typeof(T).FullName + key); | |
} | |
public static void Delete(string partialKey) | |
{ | |
MemoryCache.Default.Where(i => i.Key.Contains(partialKey)).ToList().ForEach(i => MemoryCache.Default.Remove(i.Key)); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class GenerateLog | |
{ | |
/// <summary> | |
/// Generate a simple log of the differences between oldItem and newItem based on properties with a display attribute and name. | |
/// </summary> | |
/// <typeparam name="T"></typeparam> | |
/// <param name="loggingUserIdentifier">The ID/email/name/etc. of the user making the change.</param> | |
/// <param name="oldItem">The existing item to that is being updated (or null if inserting 'newItem').</param> | |
/// <param name="newItem">The item to insert or update (or null, if deleting the item).</param> | |
/// <param name="customLogCases"> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static class GetAttributeFromExtension | |
{ | |
public static T GetAttributeFromEnum<T>(this Enum instance) where T : Attribute | |
{ | |
var attrType = typeof(T); | |
var memberInfo = instance.GetType().GetMember(instance.ToString()); | |
return ((T)(memberInfo[0].GetCustomAttributes(attrType, false).FirstOrDefault())); | |
} | |
/// <summary> |