18 using System.Collections.Generic;
19 using System.ComponentModel.Composition;
26 [InheritedExport(typeof(IObjectStore))]
27 public interface IObjectStore : IDisposable, IEnumerable<KeyValuePair<string, byte[]>>
32 event EventHandler<ObjectStoreErrorRaisedEventArgs>
ErrorRaised;
63 bool SaveBytes(
string path,
byte[] contents);
82 ICollection<string>
Keys {
get; }