iTextSharp.text.pdf.PdfResourceFileCache.Set C# (CSharp) Method

Set() public static method

public static Set ( string key, byte value ) : bool
key string
value byte
return bool
        public static bool Set(string key, byte[] value)
        {
            return s_Cache.TryAdd(key, value);
        }
PdfResourceFileCache