using System; using Telligent.Evolution.Extensibility.Version1; using Telligent.Evolution.Extensibility.Storage.Version1; namespace Samples { public class SampleFindableFileStore : IPlugin, ICentralizedFileStore, IFindableCentralizedFileStore { #region IPlugin Implementation public string Name { get { return "Sample File Store"; } } public string Description { get { return "A sample store of files."; } } public void Initialize() { } #endregion #region ICentralizedFileStore Implementation public string FileStoreKey { get { return "samples"; } } #endregion #region IFindableCentralizedFileStore public bool FindFile(ref string fileStoreKey, ref string path, ref string fileName) { path = string.Empty; fileName = "notfound.png"; return true; } #endregion } }