Reacting to FileSystem changes

IFileInfo is readonly
This commit is contained in:
Praburaj 2015-03-20 11:56:05 -07:00
parent 352edcd7fe
commit 8e57f8af64
1 changed files with 0 additions and 15 deletions

View File

@ -99,11 +99,6 @@ namespace Microsoft.AspNet.StaticFiles
get { return false; }
}
public bool IsReadOnly
{
get { return false; }
}
public DateTimeOffset LastModified { get; set; }
public long Length { get; set; }
@ -116,16 +111,6 @@ namespace Microsoft.AspNet.StaticFiles
{
throw new NotImplementedException();
}
public void Delete()
{
throw new NotImplementedException();
}
public void WriteContent(byte[] content)
{
throw new NotImplementedException();
}
}
}
}