Ext.Net.ResourceHandler.SetCache C# (CSharp) Method

SetCache() private method

private SetCache ( byte content ) : void
content byte
return void
        private void SetCache(byte[] content)
        {
            this.context.Cache.Insert(this.webResource + (this.compress ? "_gzip" : "_nonegzip"), content, null, System.Web.Caching.Cache.NoAbsoluteExpiration, TimeSpan.FromDays(30));
        }