ServiceStack.HttpCacheExtensions.StripWeakRef C# (CSharp) Method

StripWeakRef() static private method

static private StripWeakRef ( this eTag ) : string
eTag this
return string
        internal static string StripWeakRef(this string eTag)
        {
            return eTag != null && eTag.StartsWith("W/")
                ? eTag.Substring(2) 
                : eTag;
        }
    }