Wox.Infrastructure.Image.ImageCache.this C# (CSharp) Method

this() public method

public this ( string path ) : System.Windows.Media.ImageSource
path string
return System.Windows.Media.ImageSource
        public ImageSource this[string path]
        {
            get
            {
                Usage.AddOrUpdate(path, 1, (k, v) => v + 1);
                var i = _data[path];
                return i;
            }
            set { _data[path] = value; }
        }