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

TryAddToCache() public method

public TryAddToCache ( string path, Stream stream, IFormatInfo outputFormat, IAddToCacheResult &result ) : bool
path string
stream System.IO.Stream
outputFormat IFormatInfo
result IAddToCacheResult
return bool
        public bool TryAddToCache(string path, Stream stream, IFormatInfo outputFormat, out IAddToCacheResult result)
        {
            result = null;
            return false;
        }