Bombsquad.DynamicMedia.Implementations.Cache.NullMediaCache.TryServeRequestFromCache C# (CSharp) Method

TryServeRequestFromCache() public method

public TryServeRequestFromCache ( string path, IFormatInfo outputFormat, IResult &result ) : bool
path string
outputFormat IFormatInfo
result IResult
return bool
        public bool TryServeRequestFromCache(string path, IFormatInfo outputFormat, out IResult result)
        {
            result = null;
            return false;
        }