Added dynamic wrapper support to IFileSystem to allow context specific implementations from which to hang extension methods upon (ie IMediaFileSystem)

This commit is contained in:
Matt@MBP13-PC
2012-08-20 09:42:32 -01:00
parent 847b3523a8
commit 3a2ed918de
18 changed files with 386 additions and 19 deletions

View File

@@ -0,0 +1,11 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Umbraco.Core.IO
{
[FileSystemProvider("media")]
internal interface IMediaFileSystem : IFileSystem
{ }
}